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.
# 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;
- 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.
After you're installed all the software with npm install
, you can start the Webpack Dev Server.
cd ./frontend;
npm start;
After you've install all the software with npm install
, you can start the backend.
cd ./backend;
npm start;
- Getting Started
- Making Your Site Shine
- Expanding Your Angular App
- Constructing Express Routes
- Developing Angular Forms
- Securing Your API
- Sending Transactional Emails
- Including Realtime Updates
- Deploying to Production
- Conclusion
- 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!