Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ef2k/angular2-quickstart

Quick start from the Angular2 docs. Decent boilerplate to get started.
https://github.com/ef2k/angular2-quickstart

Last synced: 10 days ago
JSON representation

Quick start from the Angular2 docs. Decent boilerplate to get started.

Awesome Lists containing this project

README

        

# Angular2 Quickstart

## Get Started

```
$ nvm use
```

> If you don't have the listed version, then do `$ nvm install`

Install all dependencies:

```
$ npm install
```

Start up the dev server:

```
$ npm start
```

## Setting up Vim

Assuming you're using Vundle, in your `.vimrc`:

```
Plugin 'leafgarland/typescript-vim' "Syntax highlighting
Plugin 'Shougo/vimproc.vim' "Dependency to get autocompletion
Plugin 'Quramy/tsuquyomi' "Autocompletion
```

**You also want to ignore the types directory**

```
let g:ctrlp_custom_ignore = '\v[\/](node_modules|types|target|dist|tmp|bower_components|vendor)|(\.(swp|ico|git|svn))$'
```