Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 989 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 989 Bytes

todoapp

A Todo Application developed by Hackers' Club Developers

This is basic rest api written in js using Node.js, Express, MongoDB, Mongoose.

Installation

  1. Ater cloning the repo, run;
$ npm install

Usage

  1. Start a MongoDB server instance This server uses a localhost mongodb server URI, you can add your own URI to the mongoose connection in app.js.

  2. Start the server

$ npm start
  1. Start the server in dev mode
$ npm run dev
  1. Test or consume API endpoints For, this you may use any API Client including Postman, Web Browser Clients, etc.

Further steps (Optional)

You can improve the API endpoints with more features as your own and also you can contribute to our repository as well. All the contributions are to be done using GitHub Pull Requests(PRs).

You may develop following features to learn basics:

  • Edit todos
  • Todo Model changes
  • User Models
  • User API Endpoints
  • User Authentication (Firebase?)