Create new Angular application with auth and layout libraries.
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:
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.
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.
This project is licensed under the MIT License.