$ npm init$ npm install express$ npx express-generator$ npm install typescript -D$ npx tsc --init$ npm installInstall Apache CouchDB in:
https://couchdb.apache.org/
Record your CouchDB credentials.
Then, open Project Fauxton to access CouchDB instance
http://localhost:5984/_utils/#login
Setup CouchDB by configuring a Cluster or Single Node. We will use Single Node for development.
Run the project:
- LINUX or MAC
$ DEBUG=app:* npm start- WINDOWS SHELL
$ set DEBUG=app:* & npm start- WINDOWS POWERSHELL
$ $env:DEBUG='app:*'; npm start