Fabrício Matté
Web developer, open source projects contributor and Stack Overflow citizen.
General-purpose programming language.
The scripting language of the Web.
!=
A platform to run JavaScript.
Runs outside of a browser, no sandboxing. Can access the host's network, file system, anything.
General purpose: Web servers, CLI programs, compilers, game servers, IoT, static site generators etc.
The package manager for JavaScript.
Over 270,000 packages.
npm install lodash --save
www.modulecounts.com
Build cross-platform desktop apps with web technologies and Node.js.
Use HTML, CSS, and JavaScript with Chromium and Node.js to build your app.
var five = require("johnny-five");
var board = new five.Board();
board.on("ready", function() {
// Create an Led on pin 13
var led = new five.Led(13);
// Blink every half second
led.blink(500);
});
https://github.com/rwaldron/johnny-five
https://github.com/nodejs/LTS
https://slides.com/fabriciomatte/javascript-and-nodejs
https://slides.com/fabriciomatte/javascript-and-nodejs
By Fabrício Matté
#JavaScript #nodejs
Web developer, open source projects contributor and Stack Overflow citizen.