forked from knockout/knockout
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a82131
commit f4a861a
Showing
1 changed file
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
**Knockout** is a JavaScript library that makes it easier to create rich, desktop-like user interfaces with JavaScript and HTML, using *observers* to make your UI automatically stay in sync with an underlying data model. It works particularly well with the [MVVM pattern](http://en.wikipedia.org/wiki/Model_View_ViewModel), offering declarative bindings somewhat like [Silverlight](http://www.silverlight.net/) but without the browser plugin. | ||
**Knockout** is a JavaScript [MVVM](http://en.wikipedia.org/wiki/Model_View_ViewModel) (a modern variant of MVC) library that makes it easier to create rich, desktop-like user interfaces with JavaScript and HTML. It uses *observers* to make your UI automatically stay in sync with an underlying data model, along with a powerful and extensible set of *declarative bindings* to enable productive development. | ||
|
||
##Getting started | ||
|
||
**Totally new to Knockout?** The most fun place to start is the [online interactive tutorials](http://learn.knockoutjs.com/). | ||
|
||
For more details, see | ||
|
||
* Documentation and tutorials on [the project's website](http://knockoutjs.com/documentation/introduction.html) | ||
* Documentation on [the project's website](http://knockoutjs.com/documentation/introduction.html) | ||
* Online examples at [http://knockoutjs.com/examples/](http://knockoutjs.com/examples/) | ||
|
||
To build on Linux, run `build/build-linux`. To build on Windows, run `build\build-windows.bat`. | ||
##Downloading or building Knockout | ||
|
||
You can [download released versions of Knockout](https://github.com/SteveSanderson/knockout/downloads) from Github. | ||
|
||
Or, if you prefer to build the source yourself, clone the repo from Github, and then: | ||
|
||
* To build on Linux or Mac, run `build/build-linux` | ||
* To build on Windows, run `build\build-windows.bat` | ||
|
||
##License | ||
|
||
License: MIT [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) | ||
MIT license - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) |