Skip to content

MrDataScientist/Angular-nodejs-training

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeJS-training

Node project first commands

tutorials

Articles:

for javascript libs :

to download the latest version of node js go to :

https://nodejs.org/en/download/current/

to check which version of node js I am using :

node -v

to see where my node js is installed :

which node

nvm for windows : an alternative solution

https://github.com/coreybutler/nvm-windows/releases https://github.com/creationix/nvm

Install script

To install or update nvm, you can use the install script using cURL:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash

or Wget:

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash

The script clones the nvm repository to /.nvm and adds the source line to your profile (/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc).

export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

Install git for windows

https://git-scm.com/download/win

Node.js v6.8.1 Documentation

https://nodejs.org/api/net.html#net_socket_connect_port_host_connectlistener

Node.js - Event Emitter

https://www.tutorialspoint.com/nodejs/nodejs_event_emitter.htm

Postman

https://www.getpostman.com/docs/newman_intro

Testing node.js Express app

you can use Gulp as test runner jasmine as test framework

another option: you can use Mocha Chai

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published