codingstar / AirNote

A note app just like air, concise but necessary.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AirNote

Alt text A note app just like air, concise but necessary.

Develop

Run

npm start

EcmaScript 6 default

Default version of complied js code is es6. If you want to transform it to es5 (e.g: run in ie), please add code below to .babelrc.

"presets": [
  ["es2015", {"modules": false}]
],

Practice principle

Common

  1. Functional component in priority.
  2. Export store's singleton with default export.

Type

  1. No <any> except of types folder.
  2. Avoid <any> in types folder as much as possible.
  3. Not add prefix I to interface declare which in types

About

A note app just like air, concise but necessary.

License:MIT License


Languages

Language:TypeScript 74.4%Language:JavaScript 13.5%Language:CSS 12.0%