Skip to content

hugdesign-youske/ng2Todos

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular2 Todos

このリポジトリはAngular2を利用して簡素なTodosアプリケーションを作るためのものです。構成としては次の通り

ハンズオンのコメントは各ステップの中のreadme.mdに書かれています。参照しながら進めてください。

また、src/componentsの各ステップ中にあるtemplateディレクトリがハンズオンを行うファイルです。完成したファイルは各ステップ中のanswerディレクトリにあります。これらはscripts/main.tsにあるbootstrapを変更することでいつでも見ることができます。

ファイル構成は次の通り:

.
├── README.md
├── bs-config.json
├── favicon.ico
├── package.json
├── src
│   ├── components
│   │   ├── index.ts
│   │   ├── step.1 <- 準備(Hello World的な)
│   │   ├── step.2 <- Todosアプリを作ってみる
│   │   ├── step.3 <- サービスを利用する(@Injectableの利用)
│   │   └── step.4 <- コンポーネント化する(@Input/@Outputの利用)
│   ├── index.html
│   ├── scripts
│   │   └── main.ts <- 呼び出すコンポーネントを切り替えます
│   ├── shared
│   │   ├── index.ts
│   │   ├── todo.store.ts
│   │   └── todo.ts
│   ├── styles
│   │   └── main.css
│   └── system-config.ts
├── tsconfig.json
├── tslint.json
├── typings
└── typings.json

はじめる

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 87.9%
  • CSS 6.5%
  • HTML 5.6%