Code Monkey home page Code Monkey logo

ecommerce's Introduction

Live URL

https://piyali-ecommerce.herokuapp.com

Admin URL

https://piyali-ecommerce.herokuapp.com/#/admin

Swagger URL

https://piyali-ecommerce.herokuapp.com/api-docs/

login credentails

Run Ecommerce application

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

CI/CD (Continuous Integration/Continuous Delivery) with Heroku and GitHub

https://www.youtube.com/watch?v=_tiecDrW6yY https://www.youtube.com/watch?v=O_xEqtjh1io https://devcenter.heroku.com/articles/github-integration

Mockdata

assets/mockdata folder

PUSH Ecommerce application

Before push any code you have to pass in lint and test cases

1. ng lint
2. ng test

GIT codes

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

Understanding the Angular CLI Workspace File

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.

API

Authorization using JWT

https://medium.com/@maison.moa/using-jwt-json-web-tokens-to-authorize-users-and-protect-api-routes-3e04a1453c3e

In API service static JSON files are used which are coming from assets folder

categories.json content.json products.json

#How do I add Sass compilation in Angular CLI 6: angular.json

"schematics": {
        "@schematics/angular:component": {
          "styleext": "scss"
        }
},

Changing the CSS Files to Sass

"styles": [
              "src/styles.scss"
          ],

Angular - tsconfig paths configurations

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';

Package.json

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"

This sets up means that on a commit we:

lint the code then run tests and before pushing to a remote repository we:

perform an optimized build then run unit tests

  1. https://www.npmjs.com/package/pre-commit-with-lint
  2. https://www.npmjs.com/package/pre-commit
  3. https://sigmoidal.io/automatic-code-quality-checks-with-git-hooks/

Angular 6 Http Error Interceptor

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.

In api.service.ts

"handleError" is comment out becuase i have implement api error globally using HttpInterceptor which is written in http-error-interceptor.ts

if you change the following ------------

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.

Service worker using PWA

ng add @angular/pwa@v6-lts

Build your project

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

Configure Application Settings

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';
    }
}

isDevMode in Angular

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!');
    
    }
}

Angular Models and deserialization

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

@Inject in Angular

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);
        }
    }
}

Prepare your code (isPlatformBrowser is your friend)

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.

  1. Don’t access the DOM directly (the document/window is inaccessible without a browser).
  2. Limit/Remove usage of setInterval or similar timing functions
  3. Ensure your dependencies are compatible with SSR.
  4. 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.
  5. 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 
    }
}

ngsw-config.json

{
  "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)"
      ]
    }
  }]
}

Reference Videos :

  1. https://www.youtube.com/watch?v=5YtNQJQu31Y
  2. https://www.youtube.com/watch?v=f26hgzyGdHM

Sonar / SonarQube / Sonarts with Angular 6

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

Install tslint typescript

npm install tslint typescript --save-dev

Adding NodeJS to my Ecommerce Project

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.

RUN server

npm run start:server

API create in NODE

RUN both angular and nodejs simultaneously

npm start
npm run start:server

app.js

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

You have to write the following code in app.js to prevent from CORS

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();
});

Adding Mongoose

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);

Connecting our Node Express App to MongoDB

connect with mLab (mLab is now part of MongoDB, Inc.)

How will you create a database in mLab :

  1. https://www.linkedin.com/pulse/create-database-mongodb-using-mlabcom-piyali-das/

  2. https://www.youtube.com/watch?v=GrphDM8CJ6Q

  3. Create a database ecommerce in mLab

  4. Now you have to create multiple tables in ecommerce database like categories, content, errors, products, validationerrors (see from assets/mockdata)

  5. connection string mongodb://:.mlab.com:41557/ecommerce which will be use in database.js to connect with nodejs

  6. create a folder config in ecommerce_backend folder

  7. create a database.js file in config folder to build connectivity with mlab using authentication details

  8. create a models folder in ecommerce_backend folder

  9. Create a schema categories.js. You have to create multiple schema for each and every tables

app.js

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');
});

database.js

module.exports = {
    mlab:
    {
        name: <dbuser>,
        url: "mongodb://<dbuser>:<dbpassword>.mlab.com:41557/ecommerce",
        port: 27017
    }
};

categories.js

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);

Fetch data from mLab categories table

app.js

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
    });
  });
});

Enable GZIP to increase Performance in Nodejs

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());

Highcharts

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>

Swagger tutorials

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

Swagger Implementation

1. cd ecommerce_backend
2. npm run swagger
3. npm run start:server

Stripe payment gateway

https://angularfirst.com/typescript-string-enums/

Reference Urls

https://nehalist.io/working-with-models-in-angular/

ecommerce's People

Contributors

piyalidas10 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ecommerce's Issues

I got the error

chunk {main} main.js, main.js.map (main) 2.25 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 149 kB [initial] [rendered]
chunk {polyfills-es5} polyfills-es5.js, polyfills-es5.js.map (polyfills-es5) 531 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 6.15 kB [entry] [rendered]
chunk {styles} styles.js, styles.js.map (styles) 19.1 kB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 342 kB [initial] [rendered]
Date: 2019-08-30T17:02:45.295Z - Hash: 2d7f38c6b17f25ee49a6 - Time: 12184ms

ERROR in app/pages/products/sortby/sortby.component.ts:12:4 - error TS2554: Expected 2 arguments, but got 1.

12 @ViewChild('selectSort') selectSort: ElementRef;
~~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7892:47
7892 (selector: Type | Function | string, opts: {
~~~~~~~
7893 read?: any;
~~~~~~~~~~~~~~~~~~~
7894 static: boolean;
~~~~~~~~~~~~~~~~~~~~~~~~
7895 }): any;
~~~~~
An argument for 'opts' was not provided.
app/shared/components/home-slider/home-slider.component.ts:9:4 - error TS2554: Expected 2 arguments, but got 1.

9 @ViewChild('sliderBox') sliderRef: ElementRef;
~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7892:47
7892 (selector: Type | Function | string, opts: {
~~~~~~~
7893 read?: any;
~~~~~~~~~~~~~~~~~~~
7894 static: boolean;
~~~~~~~~~~~~~~~~~~~~~~~~
7895 }): any;
~~~~~
An argument for 'opts' was not provided.
app/shared/modal-dialog/modal-dialog.component.ts:21:31 - error TS2345: Argument of type '{ read: typeof ViewContainerRef; }' is not assignable to parameter of type '{ read?: any; static: boolean; }'.
Property 'static' is missing in type '{ read: typeof ViewContainerRef; }' but required in type '{ read?: any; static: boolean; }'.
21 @ViewChild('datacontainer', { read: ViewContainerRef }) entry: ViewContainerRef;
~~~~~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7894:9
7894 static: boolean;
~~~~~~
'static' is declared here.

** Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
i 「wdm」: Failed to compile.
Terminate batch job (Y/N)? y

npm run && ng serve && ng lint

Lifecycle scripts included in ecommerce:
test
ng test
start
npm run && ng serve && ng lint

available via npm run-script:
ng
ng
init
npm prune && npm install
build
ng build
lint
ng lint
e2e
ng e2e
start:server
nodemon server.js
fix
npm run lint -- --fix
ecommerce-build
ng lint && ng test --source-map=false --watch=false --configuration=production
ecommerce-build-prod
npm run ecommerce-build && ng build --prod --base-href ./

chunk {main} main.js, main.js.map (main) 2.25 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 149 kB [initial] [rendered]
chunk {polyfills-es5} polyfills-es5.js, polyfills-es5.js.map (polyfills-es5) 531 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 6.15 kB [entry] [rendered]
chunk {styles} styles.js, styles.js.map (styles) 19.1 kB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 342 kB [initial] [rendered]
Date: 2019-08-31T04:32:18.524Z - Hash: 2d7f38c6b17f25ee49a6 - Time: 11466ms

ERROR in app/pages/products/sortby/sortby.component.ts:12:4 - error TS2554: Expected 2 arguments, but got 1.

12 @ViewChild('selectSort') selectSort: ElementRef;
~~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7892:47
7892 (selector: Type | Function | string, opts: {
~~~~~~~
7893 read?: any;
~~~~~~~~~~~~~~~~~~~
7894 static: boolean;
~~~~~~~~~~~~~~~~~~~~~~~~
7895 }): any;
~~~~~
An argument for 'opts' was not provided.
app/shared/components/home-slider/home-slider.component.ts:9:4 - error TS2554: Expected 2 arguments, but got 1.

9 @ViewChild('sliderBox') sliderRef: ElementRef;
~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7892:47
7892 (selector: Type | Function | string, opts: {
~~~~~~~
7893 read?: any;
~~~~~~~~~~~~~~~~~~~
7894 static: boolean;
~~~~~~~~~~~~~~~~~~~~~~~~
7895 }): any;
~~~~~
An argument for 'opts' was not provided.
app/shared/modal-dialog/modal-dialog.component.ts:21:31 - error TS2345: Argument of type '{ read: typeof ViewContainerRef; }' is not assignable to parameter of type '{ read?: any; static: boolean; }'.
Property 'static' is missing in type '{ read: typeof ViewContainerRef; }' but required in type '{ read?: any; static: boolean; }'.
21 @ViewChild('datacontainer', { read: ViewContainerRef }) entry: ViewContainerRef;
~~~~~~~~~~~~~~~~~~~~~~~~~~

../node_modules/@angular/core/core.d.ts:7894:9
7894 static: boolean;
~~~~~~
'static' is declared here.

** Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
i 「wdm」: Failed to compile.
Terminate batch job (Y/N)? y

nodemon server.js

[nodemon] 1.19.1
[nodemon] to restart at any time, enter rs
[nodemon] watching: .
[nodemon] starting node server.js
Connected to database

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.