Skip to content

CLI tool to create a new Angular project from a template

Notifications You must be signed in to change notification settings

EmilGramDK/new-angular-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

License

This project is licensed under the MIT License.

About

CLI tool to create a new Angular project from a template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published