The E-Commerce Backend is a fully-functioning REST API that allows users to perform various CRUD operations such as registering an account, browsing products for sale, etc.
The E-Commerce Backend is a fully-functioning REST API that allows users to perform various CRUD operations such as registering an account, browsing products for sale, etc.
The purpose of this project is to help me to better understand Node.js, Express.js, postgreSQL, Passport, Swagger and to inspire people with valuable code.
Please use npm install & npm start to run the application in your local environment and use the shopDB.sql file to create your own database.
Examples of API configuration:
/*__________Passport middlewares___________*/
const passport = require("passport");
const LocalStrategy = require("passport-local");
const AuthService = require("./services/AuthService.js");
// Initialize passport
app.use(passport.initialize());
app.use(passport.session());
// Set method to serialize data to store in cookie
passport.serializeUser((user, done) => {
done(null, user.customer_id);
});
// Set method to deserialize data stored in cookie and attach to req.user
passport.deserializeUser((id, done) => {
done(null, { id });
});
// Configure local strategy to be use for local login
passport.use(
new LocalStrategy(async (username, password, done) => {
try {
const user = await AuthService.login({
username: username,
password: password,
});
return done(null, user);
} catch (err) {
return done(err);
}
})
);
/*__________API route handler______________*/
const indexRouter = require("./routes/index");
const authRouter = require("./routes/auth");
const customerRouter = require("./routes/customer");
const productRouter = require("./routes/product");
const cartRouter = require("./routes/cart");
const orderRouter = require("./routes/order");
app.use("/", indexRouter);
app.use("/auth", authRouter);
app.use("/customers", customerRouter);
app.use("/products", productRouter);
app.use("/carts", cartRouter);
app.use("/orders", orderRouter);
List of features ready and TODOs for future development
To-do list:
Project is: wip
Thanks to Codecademy for providing inspiring content.
Created by @pwagnerde - feel free to contact me!