Download one of the fully featured project examples showing different levels of functionality
Implementation of the famous TodoMVC application. Some of the things you could expect to learn from the project are:
Implementation of single-page application containing full set of features and pages. Some of the things you could expect to learn from the project are:
Download the boilerplate project in order to easily get started with your own application.
The project will help you get good initial folder and file structure with scripts and placeholders for your code so you could get started with the development right away
Modules let you extract only parts of the entire jsblocks framework. This is useful when you don't need a particular functionality or you want to use another solution
Download | Module Name |
---|---|
blocks.queryThe core of the jsblocks framework. Executes data-query attributes and syncs observables | |
blocks.mvcStructures your application by adding MVC(Model-View-Collection) architecture | |
jsvalueThe utility library that works with data. Often you could decide to use Underscore or Lodash instead |
<!-- development -->
<script src="http://jsblocks.com/blocks/0.3.4/blocks.js"></script>
npm install blocks
<!-- development -->
<script src="node_modules/blocks/blocks.js"></script>
bower install blocks
<!-- development -->
<script src="bower_components/blocks/dist/blocks.js"></script>
<!-- production -->
<script src="//cdn.jsdelivr.net/blocks/0.3.4/blocks.min.js"></script>
npm install blocks
<!-- production -->
<script src="node_modules/blocks/blocks.min.js"></script>
bower install blocks
<!-- production -->
<script src="bower_components/blocks/dist/blocks.min.js"></script>