Generate code snippets for a postman collection request
# install dev dependencies
npm install . -d
# run entire check (lint + tests + etc) to avoid CI failure
run `npm test`;
# run lint and style check on codebase
npm run-script lint;
# auto format individual files
npm run-script lint mypath/file1.js mypath/file2.js;
# Note that it replaces the file with an auto-formatted variant.
# Make sure you review them before committing.
# perform unit tests
npm run-script check;