Coder Social home page Coder Social logo

ecommerce-store-api-with-nodejs's Introduction

ECommerce-Store Backend API

The main features of this project are :

1: Provides a stable storefront API based on Node.js and Postgres DB.

2: The API default endpoints are /products /orders and /users.

Database users and setup:

Create user

psql-sh: CREATE USER storefront_admin WITH PASSWORD password123

Create database via SQL query

CREATE DATABASE storefront CREATE DATABASE test_storefront

grant privlieges to user on both databases

GRANT ALL PRIVILEGES ON DATABASE storefront TO storefront_admin GRANT ALL PRIVILEGES ON DATABASE test_storefront TO storefront_admin

Available Commands

In the project directory, you can run:

db-start

This command runs 'db-migrate db:up storefront' to initialize the development database with the tables mentioned in the requirements database schema.

db-test-start

This command will run 'db-migrate db:up test_storefront' this will initialize the test database with the tables mentioned in the requirements database schema.

npm run start

This command runs 'node dist/server.js' which starts the express app on localhost:3000. Open http://localhost:3000/ and add the endpoint mentioned above.

npm run build

Build the app for production into the dist folder. It correctly converts all dev code from .ts into working JavaScript files.

npm run test

  • This firstly launches a test database migration (test_storefront) and creates all the necessary tables for the API to function in a testing environment.
  • After that the test will run build in order to transpile the typescript in case it hadn't been done before.
  • Once the build is completed the test will launch jasmine, which will test the endpoints for each model.
  • Finally when all the tests are complete a down migration will be executed in order to clean the database and always have a clean slate to run the tests

npm run nodemon

For running the developement version of the app

Built With

  • TypeScript
  • Express
  • Node.js
  • Jasmine
  • NPM
  • PostgreSQL
  • JWT (JSON web Tokens for Authenitcation)

Future Updates

  • Include further endpoints implementations
  • Work on a potential front end with a framework

ecommerce-store-api-with-nodejs's People

Contributors

kingeugene923 avatar

Stargazers

Hannah avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.