Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Mar 4, 2015
1 parent d881643 commit 44a340b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Quick start

### Install

npm install mol-milo
npm install milojs

or

Expand Down Expand Up @@ -130,8 +130,8 @@ cd $MILO_FOLDER
npm link

cd $MY_PROJECT
rm -R -f -d node_modules/mol-milo
npm link mol-milo # link milo to your current project to use with browserify
rm -R -f -d node_modules/milojs
npm link milojs # link milo to your current project to use with browserify

cd $MILO_FOLDER
grunt # rebuild milo bundle every time you change any .js file
Expand Down Expand Up @@ -208,7 +208,7 @@ __milo__ supplies internal messaging classes that can also be used for applicati

Messenger instances use instances of `MessageSource` subclasses to connect to external sources and instances of `MessengerAPI` subclasses to create higher level internal messages and transform message data. This architecture allows creating an advanced functionality in just a few lines of code.

See [Messenger documentation](http://milojs.github.io/milo/messenger/index.js.html).
See [Messenger documentation](http://milojs.github.io/milo-core/messenger/index.js.html).


### Model
Expand All @@ -217,7 +217,7 @@ __milo__ defines Model to allow safe access to the data without the need to worr

Using Model does not require these APIs, and unlike these APIs it allows subscribing to changes on properties of your Models to any depth.

See Model [demo](https://github.com/milojs/milo/blob/master/lib/model/demo.js) and [Model documentation](http://milojs.github.io/milo/model/index.js.html).
See Model [demo](https://github.com/milojs/milo/blob/master/lib/model/demo.js) and [Model documentation](http://milojs.github.io/milo-core/model/index.js.html).


### Connector
Expand All @@ -232,7 +232,7 @@ Very soon Connector instances will support structure translation allowing creati

One or multiple reactive connections can be created with [milo.minder](http://milojs.github.io/milo/minder.js.html).

See [Connector documentation](http://milojs.github.io/milo/model/connector.js.html).
See [Connector documentation](http://milojs.github.io/milo-core/model/connector.js.html).


### Views and application management
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milojs",
"version": "0.2.4",
"version": "0.2.5",
"homepage": "https://github.com/milojs/milo",
"authors": [
"MOL Technical <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions lib/milo.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require('./use_components');
* At the moment it is not possiible to require it with browserify to have it bundled with the app because of the way [brfs](https://github.com/substack/brfs) browserify plugin is implemented.
* It is possible though to require `milo` with node to use universal parts of the framework (abstract classes, Messenger, Model, etc.):
* ```
* var milo = require('mol-milo');
* var milo = require('milojs');
* ```
*
* `milo` itself is a function that in the browser can be used to delay execution until DOM is ready.
Expand Down Expand Up @@ -63,7 +63,7 @@ _.extend(milo, {
Component: require('./components/c_class'),
Command: require('./command'),
registry: require('./registry'),
milo_version: '0.2.4',
milo_version: '0.2.5',
createComponentClass: require('./util/create_component_class'),
destroy: destroy
});
Expand Down
6 changes: 3 additions & 3 deletions milo.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milojs",
"version": "0.2.4",
"version": "0.2.5",
"description": "Browser/nodejs reactive programming and data driven DOM manipulation with modular components.",
"keywords": [
"framework",
Expand Down
2 changes: 1 addition & 1 deletion pushdocs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
git stash
git branch gh-pages | echo 'Create branch gh-pages if it does not exist'
git checkout gh-pages
doxx --source lib --target . --title 'milo'
doxx --source lib --target . --title 'milojs'
git add .
git add -u .
git commit -m 'doxx generated'
Expand Down

0 comments on commit 44a340b

Please sign in to comment.