Core Modules
August 19, 2016
core modules are the ones that are there, you don't have to install them, but you do need to specifically include them. For example, load the file system module:
code
var fs = require("fs");
OR import the ES6 way
code
import fs from "fs";