Skip to content

Commit 723206b

Browse files
author
Vlad Balin
committed
Update README.md
1 parent 7136d75 commit 723206b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NestedReact
22

3-
React application architecture with [classical OO models]() in the data layer.
3+
React application architecture with [classical OO models](https://github.com/volicon/nestedtypes) in the data layer.
44

55
Brief feature list:
66

@@ -9,18 +9,18 @@ Brief feature list:
99
- Two-way data binding ([Guide to Data Binding Use Cases](/example/databinding.md))
1010
- Optional local component subtree updates.
1111
- Lightweight type annotations for props, *state*, and context as a replacement for `PropTypes`.
12-
- Gradual transition procedure for backbone applications ([Backbone Migration Guide]()):
12+
- Gradual transition procedure for backbone applications ([Backbone Migration Guide](/docs/BackboneViews.md)):
1313
- Complete interoperation with existing Backbone Views allowing you to reuse existing code and avoid upfront application rewrite.
1414
- Any type of application refactoring strategy is possible - top-to-bottom, bottom-to-top, and random parts at the middle.
1515
- Support for Backbone events and jQuery accessors in React components simplifies View refactoring.
1616

17-
Compare solution size and complexity to any of `flux` implementation on [TodoMVC example]().
17+
Compare solution size and complexity to any of `flux` implementation on [TodoMVC example](https://github.com/gaperton/todomvc-nestedreact).
1818

1919
# Installation
2020
It's packed as single UMD, thus grab the module or use `npm` to install.
2121
`npm install --save nestedreact`
2222

23-
It has [NestedTypes model framework]() and [React]() as strong dependencies.
23+
It has [NestedTypes model framework](http://volicon.github.io/NestedTypes/) and [React](http://facebook.github.io/react/) as strong dependencies.
2424

2525
Module extends React namespace (without modifying original React), and its
2626
safe to use it as a replacement for `react`.
@@ -61,7 +61,7 @@ export const MyComponent = React.createClass({
6161
```
6262

6363
Behind the scene, `state` is managed with `NestedTypes` model which is implicitly created using
64-
attribute's spec taken from `state` declaration (refer to [NestedTypes documentation]() for complete
64+
attribute's spec taken from `state` declaration (refer to [NestedTypes documentation](http://volicon.github.io/NestedTypes/#attribute-types) for complete
6565
attribute spec syntax). It has following implications:
6666

6767
- You can use primitive type values or constructor functions as attribute's type specs.

0 commit comments

Comments
 (0)