https://github.com/nsnick/example-api-server
https://github.com/nsnick/example-api-server
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nsnick/example-api-server
- Owner: nsnick
- Created: 2017-05-08T00:37:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T00:45:23.000Z (almost 8 years ago)
- Last Synced: 2025-01-14T13:54:40.375Z (4 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# example api server in nodejs
create a file called config.js and add the following
```javascript
module.exports = {
'secret': 'bestsessiontokensecretever',
'database': 'path/to/mongo/database',
'postDelayInSeconds': 180, //3 minute
'commentDelayInSeconds': 60
};
```npm start