P2PSP server implementation
- Clone the repo -
git clone https://github.com/agauniyal/crossroads - Install required dependencies
cd crossroads && npm install --production(for yarn, replacenpm installwithyarnand keep the--productionflag as it is) - Start the server -
npm start(for yarn, useyarn start)
Make sure you have latest node version (node v8 currently), though it should work with v7 as well. Crossroads is continously tested on Travis CI against Node v8 and latest Node version.
- Clone the repo -
git clone https://github.com/agauniyal/crossroads - Install required dependencies
cd crossroads && npm install(for yarn, replacenpm installwithyarn) - Start the server -
npm run dev(for yarn, useyarn dev) - Make changes, update test files in
testsdirectory and run tests -npm testoryarn test - At the end, make sure to generate docs via -
npm run gen-docsandnpm run gen-docs-htmlcommand (for yarn -yarn gen-docsandyarn gen-docs-html)
Make sure to check out auto-generated documentation as well.