GithubHelp home page GithubHelp logo

thanhtrungit25 / apiecommongooseexpress Goto Github PK

View Code? Open in Web Editor NEW

This project forked from melardev/apiecommongooseexpress

0.0 1.0 0.0 754 KB

Ecommerce API app implemented in NodeJs with Mongoose and Express

Home Page: http://melardev.com

JavaScript 99.87% CSS 0.13%

apiecommongooseexpress's Introduction

ApiExpressMongoEcommerce

Table of Contents

Introduction

This is one of my E-commerce API app implementations. It is written in Node js, using Express and Mongoose as the main dependencies. This is not a finished project by any means, but it has a valid enough shape to be git cloned and studied if you are interested in this topic. If you are interested in this project take a look at my other server API implementations I have made with:

Full-stack Applications

E-commerce (shopping cart)

Server side implementations

The next to come are:

  • Spring Boot + Spring Data Hibernate + Kotlin
  • Spring Boot + Jax-RS Jersey + Hibernate + Kotlin
  • Spring Boot + mybatis
  • Spring Boot + mybatis + Kotlin
  • Asp.Net Web Api v2
  • Elixir
  • Golang + Beego
  • Golang + Iris
  • Golang + Echo
  • Golang + Mux
  • Golang + Revel
  • Golang + Kit
  • Flask + Flask-Restful
  • AspNetCore + NHibernate
  • AspNetCore + Dapper

Client side implementations

This client side E-commerce application is also implemented using other client side technologies:

Blog/CMS

Server side implementations

The next to come are:

  • Spring Boot + Spring Data Hibernate + Kotlin
  • Spring Boot + Jax-RS Jersey + Hibernate + Kotlin
  • Spring Boot + mybatis
  • Spring Boot + mybatis + Kotlin
  • Asp.Net Web Api v2
  • Elixir
  • Golang + Beego
  • Golang + Iris
  • Golang + Echo
  • Golang + Mux
  • Golang + Revel
  • Golang + Kit
  • Flask + Flask-Restful
  • AspNetCore + NHibernate
  • AspNetCore + Dapper

Client side

The next come are

  • Angular NgRx-Store
  • Angular + Material
  • React + Material
  • React + Redux + Material
  • Vue + Material
  • Vue + Vuex + Material
  • Ember

Simple CRUD(Create, Read, Update, Delete)

Server side implementations

Client side implementations

The next come are

  • Angular NgRx-Store
  • Angular + Material
  • React + Material
  • React + Redux + Material
  • Vue + Material
  • Vue + Vuex + Material
  • Ember
  • Vanilla javascript

CRUD + Pagination

Server side implementations

The next come are

  • NodeJs Express + Knex
  • Flask + Flask-Restful
  • Laravel + Fractal
  • Laravel + ApiResources
  • Go with Mux
  • AspNet Web Api 2
  • Jersey
  • Elixir

Client side implementations

The next come are

  • Angular NgRx-Store
  • Angular + Material
  • React + Material
  • React + Redux + Material
  • Vue + Material
  • Vue + Vuex + Material
  • Ember
  • Vanilla javascript

Social media links

  • Youtube Channel I publish videos mainly on programming
  • Blog Sometimes I publish the source code there before Github
  • Twitter I share tips on programming

WARNING

I have mass of projects to deal with so I make some copy/paste around, if something I say is missing or is wrong, then I apologize and you may let me know opening an issue.

Getting started

As with most node js projects, do the following

  1. git clone the project
  2. Rename the .env.example to .env and change the settings according to what you need, configure the mongodb url there
  3. npm install
  4. npm start
  5. The last step is up to you, you can either open it in an IDE and debug it, or you can open the api.postman_collection.json with Postman, and then execute the queries

Features

  • Authentication / Authorization
  • Paging
  • CRUD operations on products, comments, tags, categories Fetching products page
  • Orders, guest users may place an order Database diagram

What you will learn

  • Mongoose ORM

    • associations: ref, ref[]
    • virtual attributes
    • complex queries
  • express

    • middlewares
    • authentication
    • authorization
  • seed data with faker js

  • misc

    • project structure
    • dotenv

Understanding the project

The project is meant to be educational, to learn something beyond the hello world thing we find in a lot, lot of tutorials and blog posts. Since its main goal is educational, I try to make as much use as features of APIs, in other words, I used different code to do the same thing over and over, there is some repeated code but I tried to be as unique as possible so you can learn different ways of achieving the same goal.

In most MongoDB applications the treatment of databases is completely different than Relation databases, in this app I did not follow that tendency, I treated MongoDB like it was a relation database, this is why I set bidirectional associations, for example: usually people will store under roles collection an array of usernames that belong to that user, or another approach would be to create an array of Ref to User collection in each of the roles document, in other words they will be applying association in only one side, in my app I set up associations in both sides: each role has an array of references to User ids that belong to that role, at the same time, each user has an array of references to Role ids he belongs to. It may not be recommended in real world applications, but hey ... this is how I like it to be, sorry if you are disapointed.

Project structure:

  • models: Mvc, it is our domain data.
  • dtos: it contains our serializers, they will create the response to be sent as json. They also take care of validating the input(feature incomplete)
  • controllers: well this is the mvC, our business logic.
  • routes: they register routes to router middleware
  • middleware: some useful middleware, mainly the authentication and authorization middleware.
  • config: the database configurer as well as passport authentication strategies configurer.
  • seeds: contains the file that seeds the database.
  • .env the env file from where to populate the process.env node js environment variable
  • public: contains the uploaded files.

Steps followed to create build this project (incomplete)

  • Generate the project with express-generator, so first install it globally $ npm install express-generator -g
  • then create the project with express myapp
  • install dependencies npm install
  • then write the code as I did -)

TODO

  • There are some input directly used when making mongodb queries, check if that leads to NoSQL injection
  • Sanitization
  • Better organization of dto files
  • Bidirectional associations: when setting address's user field, set the user's addresses array It is a little bit weird to handle the bidirectional, and in most applications I read they do not do that, but I prefer to.

apiecommongooseexpress's People

Contributors

melardev 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.