Difference between revisions of "Node.js - Express.js"

From Sinfronteras
Jump to: navigation, search
(Created blank page)
 
Line 1: Line 1:
 +
==Visual Studio Code==
 +
https://code.visualstudio.com/download/
  
 +
https://en.wikipedia.org/wiki/Visual_Studio_Code
 +
 +
Visual Studio Code is a source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring.
 +
 +
===Installation===
 +
Download the <file>.deb: https://code.visualstudio.com/download
 +
Installation: https://code.visualstudio.com/docs/setup/linux
 +
 +
==Node.js==
 +
Install Node.js https://nodejs.org/en/download/
 +
https://en.wikipedia.org/wiki/Node.js
 +
 +
Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML and run client-side by a JavaScript engine in the user's web browser. Node.js lets developers use JavaScript to write Command Line tools and for server-side scripting—running scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Consequently, Node.js represents a "JavaScript everywhere" paradigm,[6] unifying web application development around a single programming language, rather than different languages for server side and client side scripts.
 +
 +
===Installation===
 +
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
 +
 +
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
 +
sudo apt-get install -y nodejs
 +
 +
Alternatively, for Node.js 10:
 +
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
 +
sudo apt-get install -y nodejs
 +
 +
Optional: install build tools. To compile and install native addons from npm you may also need to install build tools:
 +
sudo apt-get install -y build-essential

Revision as of 19:02, 3 October 2018

Visual Studio Code

https://code.visualstudio.com/download/

https://en.wikipedia.org/wiki/Visual_Studio_Code

Visual Studio Code is a source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring.

Installation

Download the <file>.deb: https://code.visualstudio.com/download Installation: https://code.visualstudio.com/docs/setup/linux

Node.js

Install Node.js https://nodejs.org/en/download/ https://en.wikipedia.org/wiki/Node.js

Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML and run client-side by a JavaScript engine in the user's web browser. Node.js lets developers use JavaScript to write Command Line tools and for server-side scripting—running scripts server-side to produce dynamic web page content before the page is sent to the user's web browser. Consequently, Node.js represents a "JavaScript everywhere" paradigm,[6] unifying web application development around a single programming language, rather than different languages for server side and client side scripts.

Installation

https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs

Alternatively, for Node.js 10:

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

Optional: install build tools. To compile and install native addons from npm you may also need to install build tools:

sudo apt-get install -y build-essential