Skip to content

jeff-bolton/mastering-mean

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Shane A. Stillwell
Jun 8, 2016
cb25bd9 · Jun 8, 2016

History

4 Commits
Mar 18, 2016
Mar 19, 2016
Mar 18, 2016
Mar 17, 2016
Jun 8, 2016

Repository files navigation

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!
    

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published