Skip to content

Node.js/Express, MongoDB, AWS EC2 hosting. Session-based authentication, bcrypt encryption. Multer for file uploads to GCP. Nodemailer for welcome emails. Twilio for custom SMS. Firebase Notifications for store registration. Iyzico membership implementation. Dockerized with MongoDB and Node.js images. Join us now!

Notifications You must be signed in to change notification settings

ckymn/e-commerce-backend

Repository files navigation

Simple e-commerce backend

This project is a simple e-commerce backend.

Features

  • Made with NodeJs and Express framework. Used MongoDB as a database and handled communication between server, database by using native mongodb driver and hosted by AWS EC2
  • Implemented session based custom authentication system for users to login and register. Encrypted password with bcrypt to ensure user security. Users can do authenticated requests by passing session header to request.
  • Handled file uploads with multer package. Images are uploaded to GCP bucket storage.
  • Send welcome emails with the nodemailer package after a new user registered.
  • Send custom SMS for customer with the Twillio.
  • Send notification with Firebase Notification after a new store registered.
  • Implementation Iyzico when store get new membership.
  • Docker was used for mongo and node image.

Sending authenticated requests

Some endpoints are restricted to authenticated users only. To send an authenticated request, add Bearer Token header to request headers with a valid session token.

Auth endpoint

Login - GET - /api/v2/[admin,store,user]/login

Example request body:

{
    email: '[email protected]',
    password: 'some super secret password'
    password again: 'some super secret password'
}

Example request endpoint

https://api.example.com/api/v2/user/login

Returns:

{
    _id: '5gT7yHnc31',
    name: 'John Doe',
    email: '[email protected]',
    tokens: {
        access_token: '964638c64d29743075d54aa21f389049d80a0a4acf49bb05a4f9'
        refresh_token: '964638c64d29743075d54aa21f389049d80a0a4acf49bb0964638c64d29743075d54aa21f389049d80a0a4acf49bb05a4f95a4f9'
    }
}

Register - POST - /api/v2/user/register

Example request body:

{
    name: 'John Doe',
    email: '[email protected]',
    password: 'some super secret password'
}

Example request endpoint

https://api.example.com/api/v2/user/register

Returns:

{
    _id: '5gT7yHnc31',
    name: 'John Doe',
    email: '[email protected]',
}

About

Node.js/Express, MongoDB, AWS EC2 hosting. Session-based authentication, bcrypt encryption. Multer for file uploads to GCP. Nodemailer for welcome emails. Twilio for custom SMS. Firebase Notifications for store registration. Iyzico membership implementation. Dockerized with MongoDB and Node.js images. Join us now!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published