Vue Prep
- Video 34min: VueJS Documentary -- For some background information
- Article: Vue template Doc
- Article: Composition Api and Options API comparision
- Youtube Channel: Programming with Erik
- Does a lot of videos on frameworks
node
into the terminal to check it outIf regular for loops are easy and you want more, explore the following higher order functions that are great at working with arrays
Array.slice()
process.argv
process.argv
process.argv
path
moduleNode Builtin Module
: Modules that are included with the Node runtime environment. These modules need to be imported into your script but do not need to be installed with npm
.
require()
.path
builtin module and the __filename
constant, create a node app that prints the file name (without directory) and extension of the current script.path.isAbsolute
, determine if the first two arguments of process.argv
are absolute paths or not.fs
module./
at the beginning of a path mean it's location is relative to the current script.fs.readFile()
and fs.readdir()
use "error-first callbacks" where the first argument passed to a callback is the error, if there was one. This is a common pattern in Node.