Git Product home page Git Product logo

chris2011 / minifierbeans Goto Github PK

View Code? Open in Web Editor NEW
37.0 8.0 9.0 12.55 MB

Plugin to minify JS , CSS and HTML for quicken page load times by reducing the size of js/css/html files.

Home Page: http://plugins.netbeans.org/plugin/49666/js-css-minify-compress

License: Apache License 2.0

Java 99.30% Shell 0.38% Batchfile 0.30% JavaScript 0.03%
css minified-js html compressor minifier javascript hacktoberfest netbeans minify-js

minifierbeans's Introduction

MinifierBeans

License Release Contributors Downloads

Description

Plugin to minify JS , CSS and HTML for quicker page load times by reducing the size of js/css/html files. This plugin remove all unnecessary characters from source code, without changing its functionality. These unnecessary characters usually include white space characters, new line characters, comments, and sometimes block delimiters, which are used to add readability to the code but are not required for it to execute.

  • To minify all js , css or html , right click on folder in netbeans and select Minify WEB Content option ; it will minify all css & js file.
  • To minify single js/css/html file , right click on js/css/html file in netbeans and select Minify JS/CSS/HTML option to minify file.

Also optimize by compressing image PNG/JPEG (Currently Supported format) and provides other functionality such as image Base64 Encoder/Decoder .

Compiler used

JS

- Single file action -> Google Closure Compiler (Node based)
- Minify WEB Content -> YUI Compressor (Unmaintained - Java based) - #46
- Copy minifed JS -> YUI Compressor (Unmaintained - Java based) #46

CSS

- Single file action -> PostCSS with CSSNano (Node based)
- Minify WEB Content -> YUI Compressor (Unmaintained - Java based) #46
- Copy minifed CSS -> YUI Compressor (Unmaintained - Java based) #46

HTML

- Single file action -> html-minifier-terser (Node based)
- Minify WEB Content -> htmlcompressor (Unmaintained - Java based) #46
- Copy minifed HTML -> htmlcompressor (Unmaintained - Java based) #46

XML

- Single file action -> Minify-XML (Node based)
- Minify WEB Content -> htmlcompressor (Unmaintained - Java based) #46
- Copy minifed XML -> htmlcompressor (Unmaintained - Java based) #46

JSON - Custom implementation

Images - PngTastic (Java based) #46

What does it do?

1- Minify JS File
2- Minify JS Source Code Snippet by selecting in editor
3- Minify CSS File
4- Minify CSS Source Code Snippet by selecting in editor
5- Minify HTML File
6- Minify HTML Source Code Snippet by selecting in editor
7- Minify XML File
8- Minify XML Snippet by selecting in editor
9- Minify JSON File
10- Minify JSON Snippet by selecting in editor
11- Log Evaluation Input/Output File Size , Space Reduced Percentage , Total Time Taken ,Individual Log appended to file
12- Image Base64 Encoder/Decoder
13- Image PNG/JPEG Compress (Currently Supported format)

Minifierbeans Final

Minifierbeans all tabs

Changelog

See Changelog for all information

NetBeans Compatibility

Version < 2.3.0 is compatible to NetBeans 8.2 (Which is not supported anymore)
Version >= 2.5.1 is compatible to Apache NetBeans >= 9.0

Plugin is available at https://github.com/Chris2011/minifierbeans/releases/latest

minifierbeans's People

Contributors

chris2011 avatar dependabot[bot] avatar hkaraoglu avatar jayen84 avatar jgauravgupta avatar yoancutillas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

minifierbeans's Issues

Disable strict mode for JS files

The new plugin version using closure compiler seems to compile in ECMASCRIPT6_STRICT, which means that a 'use strict;' command is prepended to the minified JS files. This command makes my complete JavaScript code not work anymore. (I don't know why though, because the console does not throw any error.)
I think the strict mode should either be disabled, or the user should be enabled to configure the parameters for closure compiler by himself.

Cannot install in NB9

I hit a snag installing the plugin in NB9 because it complains about the Progress API (>=1.50.1 but only found 1.49.1) and Utility API versions (>= 9.11.1 but only found 9.9.1).

Minified file not sync to remote server

What steps will reproduce the problem?

   1.create style.css 
   2.minify it in separate file (it's immediately sync with remote server)
   3.change style.css, minify it again
   4.minified files changed byt not synchronized to remote server


What is the expected output? What do you see instead?

   Minified file must cause sync of itself

What version of the product are you using? On what operating system?

   Product Version: NetBeans IDE 8.0.2 (Build 201411181905)
   Обновления: Среда NetBeans IDE обновлена до версии NetBeans 8.0.2 Patch 1
   Java: 1.8.0_25; Java HotSpot(TM) 64-Bit Server VM 25.25-b02
   Runtime: Java(TM) SE Runtime Environment 1.8.0_25-b18

Please provide any additional information below.

A attach a video demonstration

Original issue reported on code.google.com by [email protected] on 16 May 2015 at 1:13

Attachments:

Control file permissions

Hi guys,
thanks for a great netbeans plugin.

Is there a way to control file permissions of the generated minified files?

with regards from germany
Ariane

JS minification removes "use strict";

What steps will reproduce the problem?
1. Create a JavaScript file like the following:

(function () {
   'use strict';

    var something = 1;

}());

2. Use this plugin to minify the JS file.
3. See that the minified JS file lacks 'use strict'.

What is the expected output? What do you see instead?

I would expect the minified file to still contain the 'use strict'; directive, 
rather than removing it (since it affects the functioning of the code).

What version of the product are you using? On what operating system?

I'm using version 2.2.1 of the "JS CSS Minify Compress" NetBeans plugin, with 
NetBeans version 8.0.2 on Windows 7.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 27 Jul 2015 at 6:09

org.mozilla.javascript.EvaluatorException: Compilation produced 18 syntax errors.

This issue was originally reported against NetBeans, for details please see [1] 
and [2]


org.mozilla.javascript.EvaluatorException: Compilation produced 18 syntax 
errors.
   at org.netbeans.util.source.minify.MinifyUtil$CompressorErrorReporter.runtimeError(MinifyUtil.java:366)
   at org.mozilla.javascript.Parser.parse(Parser.java:392)
   at org.mozilla.javascript.Parser.parse(Parser.java:337)
   at com.yahoo.platform.yui.compressor.JavaScriptCompressor.parse(JavaScriptCompressor.java:312)
   at com.yahoo.platform.yui.compressor.JavaScriptCompressor.<init>(JavaScriptCompressor.java:533)
   at org.netbeans.util.source.minify.MinifyUtil.compressJavaScript(MinifyUtil.java:161)
   at org.netbeans.util.source.minify.JSMinify.jsMinify(JSMinify.java:91)
   at org.netbeans.util.source.minify.JSMinify$1.run(JSMinify.java:61)
   at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1423)
   at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)



[1] https://netbeans.org/bugzilla/show_bug.cgi?id=243608
[2] http://statistics.netbeans.org/exceptions/detail.do?id=205000

Original issue reported on code.google.com by [email protected] on 6 Jun 2014 at 8:23

Please add js css minify options to the project context and not only globally

The problem is, I enabled the "Minify on save" because I used this in a project, but after using an other project, it minifies too but this is wrong from my expectation. Yes the feature has ONLY global options which is not good, because there are a lot of cases, where you use js css minify with this plugin in specific projects and in other cases you use a build tool like grunt or gulp or normal npm scripts. So please remove those things from the global options and add it to the project context to project properties. This make more sense. Maybe you can have it inside options too for defaults and override it from the project properties.

Regards

Chris

The degree of compression for CSS

Could use some additional settings options for compression, for example, to 
kompresownay css file was not a single line, but each type elemnt class as a 
new line.


Original issue reported on code.google.com by [email protected] on 21 Apr 2015 at 9:12

Minified HTML is wrong

Hi. I use this plugin very active, but exclude HTML minify - it's impossible to use it without "copyright header" setting. In the rules HTML document must start with <!DOCTYPE html> tag, not from my header. But, if I keep this field empty, I have null text in start of document. Please, @Chris2011, correct this option - make it optioanally, or just make that empty field is not "null", but empty string (nothing).
It would be the best to check is there Doctype tag in the document, and if there is to put comment after it.
Thanks!

Automate minify

I use LESS wich generates a new CSS file everytime I hit save. It would be nice 
if minify would automaticly generate the minified CSS. Now I have to manualy do 
it before I see the results.

Love this plug-in

Henry Hekman


Original issue reported on code.google.com by [email protected] on 30 Sep 2014 at 7:17

New build folder has still the dev files in it.

When I enable the option: "Create Separate Build Folder", the style_build folder, which is my new folder after minify a folder, contains all dev files, which should not. I have a style folder which has css files (for example) and the minified folder, should has only .min.css inside it and nothing more.

Cheers

Chris

Keep semicolons in JS

Great tool!

Is there a way to keep the semicolons when minify-ing a Javascript file?
It would be great to have a checkbox in the "JavaScript Minify" option tab.

Thanks 

Original issue reported on code.google.com by [email protected] on 10 Jul 2014 at 9:28

Not possible to minify multi selected files

I know that it is possible to minify a folder with files inside, but it is not possible to minify multi selected files. Please add this feature. I only can minify one file. The minify action is deactivated when I right click on multi selected files.

Cheers

Chris

Thank you for ES6 compression!

Thank you for making ES6 compression work! I have one question, it seems like the minifierbeans tab page in the Tools|Options menu (tested in Netbeans 10/11) is not being added. Am I doing something wrong? Compressing ES6 works perfectly. Also I'm wondering if an alternative user defineable target path for compressed files is provided in this new version, next to the default path.

Minify fails on JS with arrow function expression

For example

function resolveAfter2Seconds() {
  return new Promise(resolve => {
    setTimeout(() => {
      resolve('resolved');
    }, 2000);
  });
}

async function asyncCall() {
  console.log('calling');
  var result = await resolveAfter2Seconds();
  console.log(result);
  // expected output: 'resolved'
}

asyncCall();

Switch from YUICompressor for CSS to a modern version

In case, that the YUICompressor is old, not maintained anymore and can't handle modern CSS, we need to get rid of it and find another one. Most of them are NPM related so calling them from the commandline could be an option.

Character string problem in JS

Special characters in strings are modified by v2.4.0. A line like
var a = "<div>anything</div>";
is converted to
var a="\x3cdiv\x3eanything\x3c/div\x3e";

Please leave character strings unchanged!

single row?

ver 2.5.1:
Netbeans 11

Hello. Now i have multiple rows when minify js. HOw i can render in one single line?

Issue with single line comments

What steps will reproduce the problem?
1. CSS with // Comments
2. Right Click and Minimize CSS
3. Output has anything after comment commented out

What is the expected output? What do you see instead?
Expected to remove comments and leave only minimized code.
Comments are left and comment out remaining code.

What version of the product are you using? On what operating system?
 2.0 in Netbeans 8.0 on Windows 8.1

Please provide any additional information below.
I know I could simply use /* Comment */ but my CSS is heavily commented and it 
could be more efficient if it removed comments completely 

Original issue reported on code.google.com by [email protected] on 11 Aug 2014 at 5:04

Unnecessary 1st blank line in minified file

What steps will reproduce the problem?
1. The minified file (JS/CSS) has a blank line and then minified code on 2nd 
line

What is the expected output? What do you see instead?
No blank line required. 

What version of the product are you using? On what operating system?
Version: 2.2.1 Source: 1431507901_org-netbeans-minify.nbm


Please provide any additional information below.
I am not directly using the code, but its plugin for netbeans.

Original issue reported on code.google.com by [email protected] on 7 Aug 2015 at 7:20

Bad conversion of ANSI files

What steps will reproduce the problem?
1. Create project with Windows-1252 encoding
2. Write on a js file a string constant with special characters 
3. Minify it

What is the expected output? What do you see instead?
The resulting file is encoded on UTF8 and the special characters converted to 
garbage.

What version of the product are you using? On what operating system?
2.0 on Netbeans 8.0.2. Windows 7 64 bits

Please provide any additional information below.
Looks like the plugin disregards the project encoding and treats everything as 
UTF8 files

Original issue reported on code.google.com by [email protected] on 30 Dec 2014 at 6:01

Switch from Java, completely to Node

In case that this plugin will/can minify JS/CSS/HTML and JSON we should get rid of finding Java wrapper for that and using Node and NPM packages. For Node we have a huge amount of modern and maintained libs for minify JS (UglifyJS, Google Closure Compiler, etc.) CSS (CSS Nano, etc.), HTML (HTML Minifier, etc.) and JSON (TBD). So it makes much more sense to change the options to add the CLIs for those packages as we have it for NPM, Bower, Sass, Less, Grunt, Gulp, etc. We will be more flexible and we will get more updates.

  • Switch from Java and YUICompressor to NPM and CSSNano.

  • Switch from Java and Closure Compiler to NPM and Google Closure Compiler.

  • Switch from Java and HTMLCompressor to NPM and html-minifier-terser.

  • Switch from Java and XMLCompressor to NPM and minify-xml.

  • Switch from Java and YUICompressor to NPM and CSSNano for minifing files in folders.

  • Switch from Java and Closure Compiler to NPM and Google Closure Compiler for minifing files in folders.

  • Switch from Java and HTMLCompressor to NPM and html-minifier-terser for minifing files in folders.

  • Switch from Java and XMLCompressor to NPM and minify-xml for minifing files in folders.

  • Switch from Java and YUICompressor to NPM and CSSNano for copy minified selected code.

  • Switch from Java and Closure Compiler to NPM and Google Closure Compiler for copy minified selected code.

  • Switch from Java and HTMLCompressor to NPM and html-minifier-terser for copy minified selected code.

  • Switch from Java and XMLCompressor to NPM and minify-xml for copy minified selected code.

Exception when minifying JS, no output

I'm attemping to minify my jquery script that is working flawlessly. It contains no errors and is based on the jquery plugin boilerplate. When clicking "Minify JS", I get a success message but the min.js file is empty. I have a notification about an exception from the plugin:

org.mozilla.javascript.EvaluatorException: Compilation produced 13 syntax errors.
at org.netbeans.util.source.minify.MinifyUtil$CompressorErrorReporter.runtimeError(MinifyUtil.java:485)
at org.mozilla.javascript.Parser.parse(Parser.java:392)
at org.mozilla.javascript.Parser.parse(Parser.java:337)
at com.yahoo.platform.yui.compressor.JavaScriptCompressor.parse(JavaScriptCompressor.java:312)
at com.yahoo.platform.yui.compressor.JavaScriptCompressor.(JavaScriptCompressor.java:533)
at org.netbeans.util.source.minify.MinifyUtil.compress(MinifyUtil.java:371)
at org.netbeans.util.source.minify.JSMinify.jsMinify(JSMinify.java:99)
at org.netbeans.util.source.minify.JSMinify.access$000(JSMinify.java:47)
at org.netbeans.util.source.minify.JSMinify$1.run(JSMinify.java:65)
at org.openide.util.RequestProcessor$Task.run(Unknown Source)
at org.netbeans.modules.openide.util.GlobalLookup.execute(Unknown Source)
at org.openide.util.lookup.Lookups.executeWith(Unknown Source)
at org.openide.util.RequestProcessor$Processor.run(Unknown Source)

Also, I was able to minify my JS with an online minifier.

Plugin not available for Netbeans 8.2

Netbeans 8.2 has been released but your awesome plugin isn't available for this version. I've manually installed it with the version for Netbeans 8.1 and it seems to work pretty good, no crashes or other problems so far.
Could you please add a version for Netbeans 8.2 on the plugin portal?

Unable to Launch IDE - failing to load

Installed tested then Uninstalled but now IDE is failing to load
\ext\image-compressor.jar 
\ext\code-minify.jar
\ext\html-minify.jar

Would like to get these files and put them in the folder.

Have attached the Message.log

>Log Session: Tuesday, July 15, 2014 8:02:31 AM MST
>System Info:
  Product Version         = NetBeans IDE 8.0 (Build 201403101706) (#b8e35b888b3f)
  Operating System        = Windows 8 version 6.2 running on amd64
  Java; VM; Vendor        = 1.7.0_15; Java HotSpot(TM) 64-Bit Server VM 23.7-b01; Oracle Corporation
  Runtime                 = Java(TM) SE Runtime Environment 1.7.0_15-b03
  Java Home               = C:\Program Files\Java\jdk1.7.0_15\jre
  System Locale; Encoding = en_US (nb); Cp1252


Original issue reported on code.google.com by [email protected] on 15 Jul 2014 at 3:39

Attachments:

Configuration / Settings missing

I moved from Netbeans 8.2 to Netbeans 11.1, installed the Plugin, but the "JS CSS Minify Compress" option is missing in Preferences-Screen.

Bildschirmfoto 2019-08-30 um 17 50 24

And somehow the Plugin is now just called "user installed plugins"

Bildschirmfoto 2019-08-30 um 17 54 19

Minifying per se is working!

Detailed Syntax Errors not Shown on Minifiying JS

When minifying JS, the minification process sometimes results in syntax errors due to questionable JS syntax/code. This is understandable. What is annoying is the minifier doesn't state what code caused errors, just that errors were encountered.

It'd be useful if for each error, there would be a message stating what line and char (approximately) in the original file contained the error, so that it can be rectified and minification rerun.

Change result behaviour from dialog to notifications.

After call the minifier action on a specific file, I got the result of how much I saved as a JDIalog. This is annoying, beacuse you need to click ok. It would be better to get this as an notification, no disturbing and only a hint. If you need more information, I can click on it and read it.

JS minification not working for some files (exception output)

I have a JS file which cannot be minified. The .min.js output is an empty file. Additionally Netbeans 8.2 outputs this exception:

org.mozilla.javascript.EvaluatorException: Compilation produced 4 syntax errors.
	at org.netbeans.util.source.minify.MinifyUtil$CompressorErrorReporter.runtimeError(MinifyUtil.java:485)
	at org.mozilla.javascript.Parser.parse(Parser.java:392)
	at org.mozilla.javascript.Parser.parse(Parser.java:337)
	at com.yahoo.platform.yui.compressor.JavaScriptCompressor.parse(JavaScriptCompressor.java:312)
	at com.yahoo.platform.yui.compressor.JavaScriptCompressor.<init>(JavaScriptCompressor.java:533)
	at org.netbeans.util.source.minify.MinifyUtil.compress(MinifyUtil.java:371)
	at org.netbeans.util.source.minify.JSMinify.jsMinify(JSMinify.java:99)
	at org.netbeans.util.source.minify.JSMinify.access$000(JSMinify.java:47)
	at org.netbeans.util.source.minify.JSMinify$1.run(JSMinify.java:65)
	at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1443)
	at org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:68)
	at org.openide.util.lookup.Lookups.executeWith(Lookups.java:303)
	at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2058)

The JS file is valid and free of errors. I have been able to minify it with other tools:

$(function () {

//        ...
    function f(x, y=false) {
        // ...
    }

//        ...
});

If I remove the "= false" part it minifies successfully.

Adding this to the project build phase

Hi, could you please explain how we can add this to the project build setting? I don't want to be manually minifying the files by choosing the option, mini web content on a folder before building the project.

Combine/concat js, css files to one file

It would be nice, to have an option to combine/concat js, css and maybe html and json files to one while minification. I don't know how is it working because of the order of some files but maybe with a separate meta file which contains the order or smth like that I don't know. I will not put it into the files itselfs, but it could be an option too.

Cheers

Chris

.jSON

your plugins is top but,
he don't know the .json extension.
thanks at all



Original issue reported on code.google.com by [email protected] on 3 Jan 2014 at 10:49

javascript minify not working

What steps will reproduce the problem?
1. Preferences -> Options -> JS CSS Minify Compress -> JavaScript Minify
2. Java Script Minify Settings -> uncheck Create New JS
3. No output

What is the expected output? What do you see instead?
Empty minified java script file

What version of the product are you using? On what operating system?
version 2.2.1


Please provide any additional information below.
It works fine before upgrade to version 2.2.1


Original issue reported on code.google.com by [email protected] on 20 May 2015 at 6:46

Problem with latin charset

Hi, when i minified a HTML file with latin character (á é) the output is wrong:
Facturación -> Facturaci�n

Bundle css/js Files

Hey,

many thanks to you for your tool, but i need bundling js/css files.

Is that possible to bundling minified files? eg. with an instruction comment 
like that:

+++++++++++ bundles.js ++++++++
#import ./../myJSFiles/file1.js
#import ./../myJSFiles/file2.js

function fooBar()
{
    alert("very nice");
}
+++++++++++++++++++++++++++++++

Original issue reported on code.google.com by [email protected] on 10 Apr 2014 at 3:26

Switch from YUI Compressor to Closure Compiler

We have to get rid of the deprecated YUI Compressor and want to use a modern one. For this I have decided to use Closure Compiler.

I don't know, whether I need to add all node_modules to the externs, otherwise it will rename everything.

Dependencies audit (trying to find them in Maven Central)

Hello Chris,

I'm trying to figure out the Maven coordinates for the binary JAR dependencies you have in release/modules/ext:

  • code-minify.jar is com.yahoo.platform.yui:yuicompressor:2.4.7
  • gson-2.2.3.jar could be com.google.code.gson:gson:2.2.3 although the binary is different
  • html-minify.jar looks like com.googlecode.htmlcompressor:htmlcompressor although not sure which version?
  • image-compressor.jar looks like com.github.depsypher:pngtastic although not sure which version?

I see that these JARs have their own dependencies which are not included. For example code-minify needs Rhino: I assume you either don't need it or you are using the Rhino from NetBeans?

ES6 Class isn't minified.

If there is an ES6 class in javascript file. It isn't minified. The plugin just creates an empty file.

Example code:

class Polygon {
  // ..and an (optional) custom class constructor. If one is
  // not supplied, a default constructor is used instead:
  // constructor() { }
  constructor(height, width) {
    this.name = 'Polygon';
    this.height = height;
    this.width = width;
  }

  // Simple class instance methods using short-hand method
  // declaration
  sayName() {
    ChromeSamples.log('Hi, I am a ', this.name + '.');
  }

  sayHistory() {
    ChromeSamples.log('"Polygon" is derived from the Greek polus (many) ' +
      'and gonia (angle).');
  }

  // We will look at static and subclassed methods shortly
}

Output:

Empty file.

Make minify options project dependent.

The problem is, that all options are global for all projects. It would be better, to customize each option for HTML, JS, CSS, JSON, minify for each project. Because I have different project with different structure, languages, etc. As the Preprocessor functionality in NetBeans for SASS, for each project, you have the option to set the input and output folder. And here it would be nice to customize the options for each project and not globally.

Cheers

Chris

Header information cannot be deleted

The plugin allows to save additional header information which will then be added to the minified file. But it is not possible to delete a previously saved text. If the field's content is removed and NetBeans is restarted, the previously saved text will still be there. (Counts for all file types - JS, CSS, HTML, XML, JSON)

(Tested with NetBeans 11.)

css calc()

Hello,
Thank you for this great tool.
I am using v 2.2.1 in Netbeans 8.
It seems that css calc() spaces are removed, which breaks the instruction.
ex: calc(1vw + 10px) =>minify=> calc(1vw+10px)
Is there anything I can do to prevent that ?
Olivier

Minify erases entire folder contents

What steps will reproduce the problem?
1. Uncheck "Create New HTML File" in HTML Minify settings
2. Minify Web Content, or individual HTML file

What is the expected output? What do you see instead?
Whether the file is in same project folder or in a new created separate build 
folder, the HTML file is empty. That sure is minified! When "Create New HTML 
File" is checked, it minifies the new file as expected.

What version of the product are you using? On what operating system?
2.2.1 on Netbeans 8.0.2, Windows 7 Professional 64-bit

Original issue reported on code.google.com by [email protected] on 23 Jun 2015 at 3:55

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.