Skip to content

A task manager REST API using MongoDB, Mongoose and Express (plus 3 other Node.js projects).

Notifications You must be signed in to change notification settings

solygambas/node-task-manager-rest-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task App and Node.js projects

A task manager REST API using MongoDB, Mongoose and Express (plus 3 other Node.js projects).

# Project Description
01 Notes App A simple CLI note-taking application to understand Node.js basics.
02 Weather App A weather app using Express, Handlebars templates, fetch API and callbacks.
03 Task App A task manager REST API using Express, MongoDB and Mongoose.
04 Chat App A simple chat room app to work with WebSocket protocol.

1) Notes App

A simple CLI note-taking application to understand Node.js basics.

See notes-app folder

Features

  • handling Command Line Args (add, remove, list, read) and options (--title, --body) with Yargs.
  • writing JSON files with JSON.stringify() and fs.writeFileSync().
  • reading JSON files with fs.readFileSync(), toString() and JSON.parse().
  • printing success/error messages in color with Chalk.
  • sanitizing data with validator.
  • watching for changes in development mode with nodemon.
  • debugging Node.js with debugger, node inspect and Chrome inspector.

2) Weather App

A weather app using Express, Handlebars templates, fetch API and callbacks.

See weather-app folder for the first part

See web-server folder for the final project

See Demo deployed on Render

See Demo deployed on Render

Features

  • making http requests in Node.js with request.
  • protecting Weatherstack and Mapbox API keys with dotenv.
  • using JSON Formatter in Chrome to work with JSON data.
  • handling errors.
  • using callbacks and callback chaining to make asynchronous requests.
  • serving up HTML, JSON and static assets with Express.
  • creating dynamic pages with Handlebars and hbs.
  • styling the app with flexbox.
  • accessing JSON HTTP endpoint from browser with fetch API.
  • handling search by location for current weather.
  • deploying on Render.

3) Task App

A task manager REST API using Express, MongoDB and Mongoose.

See task-manager folder

See REST API deployed on Render

Features

  • performing CRUD operations (create, read, update, delete) using MongoDB.
  • using promises and async/await method.
  • modeling data with Mongoose.
  • validating user data with validator.
  • enabling REST API routes (post, get, patch, delete) with Express.
  • adding registered users to MongoDB and hashing passwords with bcryptjs.
  • storing the user/task relationship.
  • granting access to the API with JSON Web Tokens.
  • testing routes with Postman environment variables.
  • adding timestamps to sort data, filtering completed/uncompleted tasks and enabling pagination.
  • managing file uploads for user avatar with multer and sharp.
  • sending subscribe/unsubscribe emails with Sendgrid.
  • writing tests with Jest and supertest using mocks and fixtures.
  • deploying on Render and MongoDB Atlas.

4) Chat App

A simple chat room app to work with WebSocket protocol.

See chat-app folder

See Demo deployed on Render

See Demo deployed on Render

Features

  • handling realtime communication between web clients and server with Socket.IO.
  • sending messages with emit() and waiting for messages with on().
  • managing chat rooms with socket.join and io.to.emit().
  • sharing location with Geolocation API and Google Maps.
  • avoiding inappropriate messages with bad-words.
  • creating templates in Express server with Mustache.
  • managing timestamps with Moment.js.

Based on The Complete Node.js Developer Course by Andrew Mead (3rd edition, 2019)