@emilgramdk/new-angular-app
v1.0.13
Published
CLI tool to create a new Angular project from a template
Downloads
336
Readme
New Angular App
Create new Angular application with auth and layout libraries.
Get Started
npx @emilgramdk/new-angular-app my-app
cd my-app
npm run start
It will create a directory called my-app
inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── certs
│ ├── localhost_cert.pem
│ ├── localhost_key.pem
├── public
│ ├── favicon.ico
│ ├── logo.svg
└── src
├── app
├── config.ts
├── index.html
├── main.ts
├── styles.css
No configuration or complicated folder structures, only the files you need to build your app. Once the installation is done, you can open your project folder:
cd my-app
Inside the newly created project, you can run some built-in commands:
npm run start
Runs the app in development mode. Open https://localhost:4200 to view it in the browser.
The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.
Learn More
To learn more about the libraries used in this template, take a look at the following resources:
- Auth Documentation - learn about authentication and api requests.
- Layout Documentation - learn about how to use the layout.
- PrimeNG Documentation - learn about the PrimeNG components.
License
This project is licensed under the MIT License.