Automatic Express API and CRUD web app for your MongoDB collections. Just add your schema to the data_api/models folder and run the included setup script to customize your configuration and add your admin credentials. All API endpoints and web app pages are protected by JSON Web Token authentification automatically.
# Clone the repo
$ git clone git@github.com:edmundpf/nuxt_express_jwt.git
# Install the dependencies
$ npm install
# First you'll need to start your API server
$ node data_api/index.js
# Start the setup script
$ node setup.js
# Launch dev instance
$ npm run dev
# Run in production mode
$ npm build
$ npm start