Create angular design without using angular-cli

3

Good night, dear. Can anyone give me instructions (or links to articles) on how to create an angular project 4 from scratch, without using angular-cli?

I'm a beginner in language and need to learn how to create an application without -cli.

Thank you.

    
asked by anonymous 09.05.2018 / 02:49

1 answer

2

You can use this example angular seed to implement the settings, however the wiser and assess if it really matters. worth all this effort (or if it is just out of curiosity), and if it is a small project, the recommended and uses the angular cli even as mentioned in the comments.

To run the seed angular project you need these settings:

$ git clone --depth 1 https://github.com/mgechev/angular-seed.git
$ cd angular-seed

# install the project's dependencies
$ npm install
# fast install (via Yarn, https://yarnpkg.com)
$ yarn install  # or yarn

# watches your files and uses livereload by default
$ npm start
# api document for the app
# npm run build.docs

# generate api documentation
$ npm run compodoc
$ npm run serve.compodoc


# to start deving with livereload site and coverage as well as continuous testing
$ npm run start.deving

# dev build
$ npm run build.dev
# prod build
$ npm run build.prod

# dev build of multiple applications (by default the value of --app is "app")
$ npm start -- --app baz
$ npm start -- --app foo
$ npm start -- --app bar
    
11.05.2018 / 21:11