# clone it
git clone https://github.com/ivo7690/express-api.git
cd express-api
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
#edit config.json
add your database connection string
generate token
# Start development live-reload server
PORT=8080 npm run dev
# Start production server:
PORT=8080 npm start
MIT