JeanRiffel / node-for-beginners

Some examples of NodeJs code for begginers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node-examples

This repo is for studying topics about NodeJS that every developer should know.

Here I want to share my knowledge I have acquired through my own studies, whether is useful for you please feel free for using it.


The main commands for starting a new app on NodeJS.

- npm init:  it will create the config file called package.json

- npm install nodemon  
    --save       -> parameter for setting applications dependencies.
    --save-dev   -> parameter for setting developer dependencies ( which only the developer will use for developing, is not necessary for running the app :) )

- npm remove nodemon 

- npm install -> it will install all dependencies set in the file package.json

- *place the folder node_modules into .gitignore because you can install all dependencies using npm install command.
 

Useful packages for studying.

Content for studying

Don't block the event loop

Sync and Async approach in NodeJS.

Generating Tokens with JWT

Accessing Oracle (Oficial)

YouTube channels

In English

About

Some examples of NodeJs code for begginers


Languages

Language:JavaScript 100.0%