Skip to content

growing-scott/angular-tutorial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular Tutorial

Getting Started

Just clone the repo and start hacking:

$ git clone https://github.com/nkiateam/angular-tutorial.git
$ cd angular-tutorial
$ npm install                   # Install Node.js components listed in ./package.json
$ npm start                     # Compile and launch

웹브라우저에서 http://localhost:3000/test/index.html

Directory Layout

.
├── /dist/                      # The folder for compiled output
├── /docs/                      # Documentation files for the project
├── /libs/                      # javascript library
├── /node_modules/              # 3rd-party libraries and utilities
├── /src/                       # The source code of the application
│   ├── /components/            # React components
│   └── /app.js                 # Client-side startup script
├── package.json                # The list of 3rd party libraries and utilities
└── webpack.config.js           # webpack module builder config file

About

angular tutorial by nkia

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 47.1%
  • HTML 25.9%
  • TypeScript 20.1%
  • CSS 6.9%