A place to store notes/examples of different node.js techniques, quirks and NPM packages. Also includes a scripts/repl.js
file that will preload a bunch of NPM packages into a REPL for a quick sandbox environment to try them out in.
- After
git clone
runyarn install
. - Run
yarn repl
to start therepl
with libraries loaded into it already.
- Run
yarn add <package_name>
. - Add a
require
statement to thescripts/repl.js
file for the new package. - Push the updated
yarn.lock
andpackage.json
files up to Github afterward.