Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 1.38 KB

File metadata and controls

43 lines (25 loc) · 1.38 KB

Angular in Practice: Secure Coding

This project demonstrates secure coding practices and is the companion project code for the Pluralsight course, "Angular in Practice: Secure Coding".

This project was generated using Angular CLI version 21.0.4.

Getting going

Clone the repo (or fork first if you want to track your changes within your personal GitHub).

There are two projects, the Angular front-end and an Express backend.

Navigate into the server and angular-app directories to install dependencies by running

npm ci

Serve each application by running

npm start

Once both apps are running, open your browser and navigate to http://localhost:4200/. The front-end application will automatically reload whenever you modify any of the source files.

Run the Express backend in dev mode

You can run the Express backend in development mode by navigating to the server directory and running:

npm run dev

This command watches for changes in your server code and hot reloads the backend.

Further help

Author- @alisaduncan.dev. Please reach out for any questions.

Additional Resources

For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.