/mastering-mean

Primary LanguageJavaScriptMIT LicenseMIT

Mastering MEAN Web Development

You can buy the Packt Publishing Course at https://www.packtpub.com/web-development/mastering-mean-web-development-expert-full-stack-javascript-video. You can also view the Course Overview for free to see what you'll learn in this course.

Install

# Clone the repository to your local machine
git clone https://github.com/northernv/mastering-mean.git;

# Move to inside the project
cd ./mastering-mean;

# Install the frontend packages
cd ./frontend;
npm install;

cd ../

# Install the backend packages
cd ./backend
npm install;

Using this repo

  • The final app can be found on the dev branch. Use git checkout dev to get the final app code.
  • Each video has a git tag that can be used to checkout individual steps. For example, you can use git checkout video-2-1 to checkout the code that is added in Video 2.1.

Starting the Frontend (Webpack)

After you're installed all the software with npm install, you can start the Webpack Dev Server.

cd ./frontend;
npm start;

Starting the Backend (Node)

After you've install all the software with npm install, you can start the backend.

cd ./backend;
npm start;

Video Table of Contents

Notes:

Errata

  • During npm install of some packages you may get peer dependency errors that should be safe to ignore.
    does not satisfy its siblings' peerDependencies requirements!