node
# Run a single file
node file.js
Tests
# Run all tests in a project
node --test # current dir by default
node --test "test/" # specify dir
# Run a single file
node file.js
# Run all tests in a project
node --test # current dir by default
node --test "test/" # specify dir