https://piyali-ecommerce.herokuapp.com
https://piyali-ecommerce.herokuapp.com/#/admin
https://piyali-ecommerce.herokuapp.com/api-docs/
login credentails
piyali@gmail.com / admin123
demo@gmail.com / demo123
admintest@gmail.com / test123
Run these two scripts in two different git bash npm start will start my Angular Application and npm run start:server will start my Node server
npm start
npm run start:server
https://www.youtube.com/watch?v=_tiecDrW6yY https://www.youtube.com/watch?v=O_xEqtjh1io https://devcenter.heroku.com/articles/github-integration
assets/mockdata folder
Before push any code you have to pass in lint and test cases
1. ng lint
2. ng test
git stash ---------- save you local changes
git pull ----------- pull the master branch changes
git stash apply -------- merge local changes with master branch changes
git add .
git commit -m "message“ -------- commit local changes to stage
git commit -m "message" --no-verify -------- forcefully commit local changes to stage
git push -u origin master -------- push local changes to master branch
git checkout –b <branch_name> -------- create new branch and move to that new branch
git checkout <branch_name> -------- move to that branch
git merge master -------- merge your changes of master branch to current branch
https://nitayneeman.com/posts/understanding-the-angular-cli-workspace-file/ https://blog.ninja-squad.com/2018/05/04/angular-cli-6.0/
@angular-devkit/build-angular: this is the one to build an Angular application, now a required dependency in your CLI projects.
https://medium.com/@maison.moa/using-jwt-json-web-tokens-to-authorize-users-and-protect-api-routes-3e04a1453c3e
categories.json content.json products.json
#How do I add Sass compilation in Angular CLI 6: angular.json
"schematics": {
"@schematics/angular:component": {
"styleext": "scss"
}
},
"styles": [
"src/styles.scss"
],
https://www.youtube.com/watch?v=whRsz7ywYZo
You can do like this:
"compilerOptions": {
"baseUrl": "src", // This must be specified if "paths" is.
...
"paths": {
"@ecommerce/auth/*": ["./app/auth/*"],
"@ecommerce/service/*": ["./app/service/*"],
"@ecommerce/directives/*": ["./app/directives/*"],
"@ecommerce/constants/*": ["./app/constants/*"],
"@ecommerce/interfaces/*": ["./app/interfaces/*"],
"@ecommerce/settings/*": ["./app/settings/*"],
"@ecommerce/pipe/*": ["./app/pipe/*"],
"@ecommerce/shared/*": ["./app/shared/*"],
"@ecommerce/css/*": ["./app/assets/css/*"],
"@ecommerce/images/*": ["./app/assets/images/*"],
},
Have in mind that the path where you want to refer to, it takes your baseUrl as the base of the route you are pointing to and it's mandatory as described on the doc.
The character '@' is not mandatory.
After you set it up on that way, you can easily use it like this:
import { Yo } from '@config/index';
Husky is a really cool npm package that lets you define npm scripts that correlate to local Git events such as a commit or push. Husky is a very popular (1 million downloads a month) npm package that allows custom scripts to be ran against your repository. Husky works with any project that uses a package.json file.
This really reduces the friction of using this feature of Git. So for example, if you install Husky using the command
npm install husky --save-dev
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
Any time you try and commit, the hooks will run your lint command first. The hooks will not allow your commit to pass if the lint are failing.
Don’t worry, you can force a commit with --no-verify if you find yourself in the situation where you just want to commit even though your pre-commit hooks don’t succeed.
git commit -m "first commit" --no-verify
I have added the following entries to the package.json
"precommit": "ng lint && npm test",
"prepush": "ng lint && ng build --aot true && npm test"
lint the code then run tests and before pushing to a remote repository we:
perform an optimized build then run unit tests
- https://www.npmjs.com/package/pre-commit-with-lint
- https://www.npmjs.com/package/pre-commit
- https://sigmoidal.io/automatic-code-quality-checks-with-git-hooks/
The Error Interceptor intercepts http responses from the api to check if there were any errors. If there is a 401 Unauthorized response the user is automatically logged out of the application, all other errors are re-thrown to be caught by the calling service so an alert can be displayed to the user.
It's implemented using the HttpInterceptor class that was introduced in Angular 4.3 as part of the new HttpClientModule. By extending the HttpInterceptor class you can create a custom interceptor to catch all error responses from the server in a single location.
"handleError" is comment out becuase i have implement api error globally using HttpInterceptor which is written in http-error-interceptor.ts
API_PRODUCT_LIST_PATH = 'assets/product.json' in app.config.ts, you can see error in "Http failure response for http://localhost:4200/assets/product.json/?cat=: 404 Not Found" error in products page and also in console.
ng add @angular/pwa@v6-lts
ng build --prod
my npm version is 6.4.1 that's why i am installing http-server version 0.4.1 to make compatible with my npm version. Now run http-server
http-server -p 8081 -c-1 dist/ecommerce
import { Injectable, isDevMode } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class AppConfig {
apiEndpoint: string;
API_CATEGORY_PATH: string;
API_CONTENT_PATH: string;
API_PRODUCT_LIST_PATH: string;
API_PRODUCT_DETAILS_PATH: string;
API_PRODUCT_ADD_PATH: string;
API_PRODUCT_DELETE_PATH: string;
API_REGISTER_PATH: string;
API_LOGIN_PATH: string;
API_CART_PATH: string;
API_CART_CHECK_PRODUCT: string;
API_CART_ADD_PRODUCT_QUANTITY: string;
API_CART_DELETE_PRODUCT_QUANTITY: string;
API_CART_REMOVE_PRODUCT: string;
API_CUSTOMERSBYYEAR: string;
API_CUTOMERSBYGENDER: string;
API_PRODUCTSBYCATEGORY: string;
IMAGE_PATH: string;
ERROR_MSG_PATH: string;
VALIDATION_ERROR_MSG_PATH: string;
envDevMode: Boolean;
constructor() {
console.log('Environment in Development mode => ', isDevMode());
this.envDevMode = isDevMode();
if (this.envDevMode) {
this.apiEndpoint = 'http://localhost:3000/';
} else {
this.apiEndpoint = 'https://piyali-ecommerce.herokuapp.com/';
}
this.API_CATEGORY_PATH = 'api/categories';
this.API_CONTENT_PATH = 'api/content';
this.API_PRODUCT_LIST_PATH = 'api/products';
this.API_PRODUCT_DETAILS_PATH = 'api/products/productdetails';
this.API_PRODUCT_ADD_PATH = '';
this.API_PRODUCT_DELETE_PATH = '';
this.API_REGISTER_PATH = 'api/auth/register';
this.API_LOGIN_PATH = 'api/auth/login';
this.API_CART_PATH = 'api/cart';
this.API_CART_CHECK_PRODUCT = 'api/cart/check';
this.API_CART_ADD_PRODUCT_QUANTITY = 'api/cart/addqty';
this.API_CART_DELETE_PRODUCT_QUANTITY = 'api/cart/deleteqty';
this.API_CART_REMOVE_PRODUCT = 'api/cart/removeprod';
this.API_CUSTOMERSBYYEAR = 'api/admin/customersbyyear';
this.API_CUTOMERSBYGENDER = 'api/admin/customersbygender';
this.API_PRODUCTSBYCATEGORY = 'api/admin/productsbycategory';
this.IMAGE_PATH = 'images/products/';
this.ERROR_MSG_PATH = 'api/errors';
this.VALIDATION_ERROR_MSG_PATH = 'api/validationerrors';
}
}
Angular CLI projects already use a production environment variable to enable production mode when in the production environment. But Angular also provides us with an utility function called isDevMode that makes it easy to check if the app in running in dev mode:
if (isDevMode()) {
console.log('👋 Development!');
} else {
console.log('💪 Production!');
}
}
https://medium.com/swlh/angular-7-models-cd0cd80f5e33 https://nehalist.io/angular-7-models/ https://nehalist.io/working-with-models-in-angular/ https://github.com/nehalist/angular7-models
We are not actually working directly with the global values document and window. Instead, we inject them via Angular’s dependency injection - this keeps our code decoupled and testable, and gives us the option to later inject different values for these Injectables based on the environment.
document is injectable via the DOCUMENT Injection Token which is part of Angular.
import { DOCUMENT } from '@angular/common';
import { Component, PLATFORM_ID, Inject } from '@angular/core';
import { isPlatformBrowser, isPlatformServer } from '@angular/common';
@Component({
...
})
export class MyComponent {
constructor(
@Inject(DOCUMENT) private document: Document,
@Inject(PLATFORM_ID) private platformId: any,
windowRefService: WindowRefService,
) {}
ngOnInit() {
this.scrollToTop();
}
scrollToTop() {
if (isPlatformBrowser(this.platformId)) {
this.windowRefService.nativeWindow.scrollTo(0);
}
}
}
There are a few important changes you need to make to your code if it is to be successfully rendered on the server. Every code base is different and so the specifics will be different. However, you can generally group SSR specific caveats into a few rules.
- Don’t access the DOM directly (the document/window is inaccessible without a browser).
- Limit/Remove usage of setInterval or similar timing functions
- Ensure your dependencies are compatible with SSR.
- SSR renders the initial state of your application. So as an example, if your images are loaded lazily, provide an SSR-compatible eager alternative using the next step (5) to ensure the content is there.
- If you need to prevent certain code from running on the server, wrap it in isPlatformBrowser(this.platformID) {}
constructor(@Inject(PLATFORM_ID) private platformID: Object) {
// run main initialisation code
if (isPlatformBrowser(this.platformID)) {
this.observable$ = interval(1000)... // safe to run code
}
// OR the alternative
if (isPlatformServer(this.platformID)) {
// run server side code
}
}
{
"index": "/index.html",
"assetGroups": [{
"name": "ecommerce",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/*.css",
"/*.js"
],
"urls": [
"https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css",
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js",
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js",
"https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
]
}
}, {
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**",
"/assets/*.json",
"/assets/styles/*.scss",
"/*.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
]
}
}]
}
SonarQube is an open-source platform for continuous inspection of code quality which do regular code and generate static analysis of code to detect bugs, code smells, and security vulnerabilities. Soon share each and every part of report like what is code smell, css issues, duplicate code etc
npm install tslint typescript --save-dev
1. Create server.js in root folder
2. Create ecommerce_backend folder in root folder
3. Create app.js file in ecommerce_backend folder
4. Run "npm install --save express" command to install express in your project
5. npm i --save-dev nodemon
nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.
npm run start:server
npm start
npm run start:server
const express = require('express'); //server starts (express framework for routing all these)
const bodyParser = require("body-parser");
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setHeader(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept"
);
res.setHeader(
"Access-Control-Allow-Methods",
"GET, POST, PATCH, DELETE, OPTIONS"
);
next();
});
app.use('/api/categories', (req, res, next) => {
const categories = [{
"catId": "1",
"catName": "electronics",
"catDesc": "electronics",
"subCat": ["Laptops"]
},
{
"catId": "2",
"catName": "appliances",
"catDesc": "appliances",
"subCat": ["Television", "Microwave"]
},
{
"catId": "3",
"catName": "home-furniture",
"catDesc": "home & furniture",
"subCat": ["Kitchen", "Furniture"]
}
];
res.status(200).json({
message: 'Successfully get categories',
categories: categories
});
});
// catch 404 and forward to error handler
app.use((err, req, res, next) => {
next(createError(404));
});
// error handler
app.use((err, req, res, next) => {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;
RUN the 'http://localhost:3000/api/categories' and get the JSON Static data in written in app.js.
Now if you run http://localhost:4200/ using npm start. You will get CORS error in console.
Cors stands for cross origin resource. We have a separated server and client, remember they're running on different domains, localhost 3000 for the server, localhost 4200 for our angular app. Now client and server want to talk to each other and they're not on the same host, if they were, then we could communicate without any issues but if they're on different hosts like in our case, we got 4200 but it doesn't matter, if we have different hosts we're then communicating with such background requests will fail and that's a security mechanism.You should not be able to access the data on a server or its resources in general if you're not running on the same server, so if the request is coming from a different address, this will give us a so-called cors error.
so let's go there to the app.js file and there I will simply add one additional middleware. Now this middleware of course has to run before we handle the response sending here because there after the response is already sent, we can't manipulate it any more and we want to manipulate the response because we need to add headers to it.
npm install --save body-parser
const bodyParser = require("body-parser");
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use((req, res, next) => {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setHeader(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept"
);
res.setHeader(
"Access-Control-Allow-Methods",
"GET, POST, PATCH, DELETE, OPTIONS"
);
next();
});
Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node.js. It manages relationships between data, provides schema validation, and is used to translate between objects in code and the representation of those objects in MongoDB. Object Mapping between Node and MongoDB managed via Mongoose.
https://mongoosejs.com/docs/guide.html https://docs.mongodb.com/manual/reference/operator/aggregation/group/ https://www.mkyong.com/mongodb/mongodb-group-count-and-sort-example/
npm install --save mongoose
on the ecommerce_backend and for that, I'll create a new folder there and I'll name it models too. Model, schema, we'll basically.
1. Create categories.js because here I want to create my categories model using mongoose
2. mongoose, const mongoose by using that require syntax where I require the mongoose package
const mongoose = require('mongoose');
3. you first of all create a blueprint for how your data should look like.
const mongoose = require('mongoose');
const categoriesSchema = mongoose.Schema({
catId: { type: String, required: true },
catName: { type: String, required: true },
catDesc: { type: String, required: true },
subCat: { type: [], required: true },
});
/*
**To use our schema definition, we need to convert our categoriesSchema into a Model we can work with.
so it's this model which I'll export with the help of the module.exports syntax.
Now this mongoose model can be used outside of this model file
*/
mongoose.exports = mongoose.Model('Categories', categoriesSchema);
How will you create a database in mLab :
-
https://www.linkedin.com/pulse/create-database-mongodb-using-mlabcom-piyali-das/
-
Create a database ecommerce in mLab
-
Now you have to create multiple tables in ecommerce database like categories, content, errors, products, validationerrors (see from assets/mockdata)
-
connection string mongodb://:.mlab.com:41557/ecommerce which will be use in database.js to connect with nodejs
-
create a folder config in ecommerce_backend folder
-
create a database.js file in config folder to build connectivity with mlab using authentication details
-
create a models folder in ecommerce_backend folder
-
Create a schema categories.js. You have to create multiple schema for each and every tables
const database = require('./config/database');
const mongoose = require('mongoose'); // require mongoose
// MongoDB connection
mongoose.connect(database.mlab.url, {
useMongoClient: true
});
mongoose.Promise = global.Promise;
// On connection error
mongoose.connection.on('error', (error) => {
console.log('Database error: ' + error);
});
// On successful connection
mongoose.connection.on('connected', () => {
console.log('Connected to database');
});
module.exports = {
mlab:
{
name: <dbuser>,
url: "mongodb://<dbuser>:<dbpassword>.mlab.com:41557/ecommerce",
port: 27017
}
};
const mongoose = require('mongoose');
const categoriesSchema = mongoose.Schema({
catId: { type: String, required: true },
catName: { type: String, required: true },
catDesc: { type: String, required: true },
subCat: { type: [], required: true }
});
/*
**To use our schema definition, we need to convert our categoriesSchema into a Model we can work with.
so it's this model which I'll export with the help of the module.exports syntax.
Now this mongoose model can be used outside of this model file
*/
module.exports = mongoose.model('Categories', categoriesSchema);
const Categories = require("./models/categories");
app.use('/api/categories', (req, res, next) => {
Categories.find().then(cats => {
res.status(200).json({
message: "Categories fetched successfully!",
categories: cats
});
});
});
Express 4.x provides minimal functionality which can be enhanced with middleware. One of the less obvious missing features is GZIP compression which shrinks the HTTP payload so it can be expanded by the browser on receipt. To add GZIP, install the compression module using npm:
npm install compression --save
(Depending on your setup, you may need to use sudo on Mac/Linux — there are various ways to fix that.)
In your main application launch file, include the compression module:
var compression = require('compression');
then mount it as the first middleware function (prior to other Express .use methods):
// GZIP all assets
app.use(compression());
https://www.tutorialspoint.com/angular_highcharts/angular_highcharts_quick_guide.htm https://codesandbox.io/s/pk2z0qvk0q
npm install highcharts --save
npm install highcharts-angular --save
Add the following entry in highchartsApp.module.ts file
import { HighchartsChartComponent } from 'highcharts-angular';
declarations: [
...
HighchartsChartComponent
],
Following is the content of the modified HTML host file app.component.html.
<highcharts-chart
[Highcharts] = "highcharts"
[options] = "chartOptions"
style = "width: 100%; height: 400px; display: block;">
</highcharts-chart>
https://www.youtube.com/watch?v=qemG0CWOx1I https://github.com/Sean-Bradley/Seans-TypeScript-NodeJS-CRUD-REST-API-Boilerplate https://www.youtube.com/watch?v=PbwQWw7xSOM http://petstore.swagger.io/ https://itnext.io/setting-up-swagger-in-a-node-js-application-d3c4d7aa56d4 https://www.youtube.com/watch?v=w71TrUUWRDU https://swagger.io/docs/ http://editor.swagger.io/?_ga=2.212193814.307479361.1574600989-1925759619.1574389229
1. cd ecommerce_backend
2. npm run swagger
3. npm run start:server