Can I use a Angular stack?
We will prepare a template for angular. but if you want to use the angular before the work is done, Please follow the steps.
1.create a Node.js container
2.update a node version
$ npm cache clean -f
$ npm install -g n
$ n stable
3.install Angular-cli
$ npm install -g @angular/cli
4.remove all files in current project folder
$ rm -rf *
5.create a new project
$ ng new <AppName> --directory .
6.run
$ ng serve --host 0.0.0.0 --port 3000 --disable-host-check
Then, access to your Running URL.([Project] > [Running URL and Port])
Thank you.
Last modified 2yr ago