Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimmymckegger/node-todos
Single page node app for tracking tasks
https://github.com/jimmymckegger/node-todos
ajax express jquery mongo node
Last synced: 15 days ago
JSON representation
Single page node app for tracking tasks
- Host: GitHub
- URL: https://github.com/jimmymckegger/node-todos
- Owner: JimmyMcKegger
- Created: 2023-01-16T13:02:13.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-30T00:51:46.000Z (about 1 year ago)
- Last Synced: 2024-10-09T08:41:22.126Z (about 1 month ago)
- Topics: ajax, express, jquery, mongo, node
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Node todolist app
- This project requires a connection to a MongoDB Atlas account. You can create a free cluster at https://www.mongodb.com/cloud/atlas.
Once you have your credentials set up, create a `.env` file in the project directory and add your connection string to the `MONGO` variable:
Example `.env` file format:
```
MONGO=mongodb+srv://name:[email protected]/?somemore=parameters
```With that done, you can run your own instance of the app locally by following these steps:
1. Clone this repo.
2. Run `npm install` to install dependencies from within the project directory.
3. Run `npm start`.