Giter Site home page Giter Site logo

nw3's Introduction

Node Workshop - Lesson 3

=> github.com/rsp/nw3

Lesson 3 of the Node.js Workshop by Rafał Pocztarski at inFullMobile.

About us

inFullMobile is a digital product design and development studio based in Warsaw, Poland.

Doing mobile, web, IoT and hardware projects from the idea to a final product.

https://infullmobile.com/

About me

Rafał Pocztarski is a Senior Node.js Developer and Team Leader at inFullMobile.

Programming since 1986, commercially since 1996.

Programming in Node since watching the first Node.js presentation by Ryan Dahl in 2009.

Enjoys writing about Node.js on Stack Overflow, holding a rare Gold Node.js Badge.

https://pocztarski.com/

Previous workshop

See the documentation added after the last workshop:

Certification

The official certification program under development:

Node.js Certified Developer (NCD) Program

More info on:

Public info about the program scope, recommended books, etc.:

Disclaimer

As a Node.js Foundation Certification Committee Member I cannot say anything more than what is available publically under the links above so please stop asking.

Language

Standard

TC39

Proposals:

MDN Docs

Compatibility

Can I use

ECMAScript compatibility tables

Node docs

Current Node API docs:

Random Node advantages

HTTP/2 in the core since July, 2017

Say hello to HTTP/2 for Node.js Core

Functions

Destructuring example:

(({ a: x, b: { c: [y, z] } }) => ({ x, y, z }))({ a: 1, b: { c: [2, 3] } });

d1.js:

const f = ({
  a: x,
  b: {
    c: [y, z]
  }
}) => ({ x, y, z });

const r = f({ a: 1, b: { c: [2, 3] } });

console.log(r);

Babel

Install:

$ npm install -g babel-cli

Use:

$ babel file.js

Explain:

TypeScript

Explain how to install.

$ npm install -g typescript

d2.ts:

const f = ({
  a: x,
  b: {
    c: [y, z]
  }
}: {
  a: string,
  b: {
    c: number[]
  }
}) => ({ x, y, z });

const r = f({ a: '1', b: { c: [2, 3] } });

console.log(r);

Compile:

$ tsc file

Run:

$ node file

GitHub

Travis

npm

ESLint

Tests

Popular modules:

More:

nw3's People

Contributors

rsp avatar

Watchers

 avatar  avatar

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.