Skip to content

Commit

Permalink
Fix typo in README.
Browse files Browse the repository at this point in the history
Add CONTRIBUTING guide.
  • Loading branch information
Thomas Hourlier committed Apr 22, 2016
1 parent 7b00bb7 commit 6eb5e67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Contributing
## Install the project

```
git clone
nvm use
npm install
npm run typings
npm start
```

## Before creating a merge request
```
npm test
```
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ optionnal **retax modules**.
Check theses projects to learn how to use retax: [retax-client][retax-client-link] or [retax-server][retax-server-link].


## How retax works?
## What retax does?
### Bootstrapping
When you bootstrap a retax application
(whether on client or on server: the code of **retax-core** is 100% universal),
Expand All @@ -36,7 +36,7 @@ The rendering is delegated to these modules [retax-client][retax-client-link] or
**retax-core** literally just *build* the application.

### Provide a inversion of control container to retax modules
Your application will be wrapped by a component `<RetaxProvider />`. This component expose to its children a IoC container.
Your application will be wrapped by a component `<RetaxProvider />`. This component exposes to its children a IoC container.
This allows them to use dependency injection. This is highly used by all **retax modules**.


Expand Down

0 comments on commit 6eb5e67

Please sign in to comment.