# Search for packages related to V8
# Arch Linux
$ pacman -Ss v8
community/nodejs 6.3.1-1
Evented I/O for V8 javascript
npm install http-server -g
npm install http-server
vs.
npm install -g typescript
installs to /usr/local
npm install gulp
installs to ./node_modules
The "manifest" for the package which contains
For more information see:
npm help 5 package.json
and
http://browsenpm.org/package.json
Included in your program via require
"Encapsulates" code in re-useable units
let fs = require("fs");
let path = require("path");
const log = console.log;
const inputFile = "data.json";
fs.readFile(inputFile,(err,data)=>{
if(err) {
throw err;
}
else {
log(data);
}
});