https://github.com/donejs/ir-reattach
https://github.com/donejs/ir-reattach
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/donejs/ir-reattach
- Owner: donejs
- License: mit
- Created: 2017-07-03T14:55:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T16:56:16.000Z (almost 6 years ago)
- Last Synced: 2025-02-13T05:01:48.991Z (3 months ago)
- Language: JavaScript
- Size: 143 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# done-ssr-incremental-rendering-client
[](https://travis-ci.org/donejs/done-ssr-incremental-rendering-client)
The client code for incremental rendering
## Usage
### ES6 use
With StealJS, you can import this module directly in a template that is autorendered:
```js
import plugin from 'done-ssr-incremental-rendering-client';
```### CommonJS use
Use `require` to load `done-ssr-incremental-rendering-client` and everything else
needed to create a template that uses `done-ssr-incremental-rendering-client`:```js
var plugin = require("done-ssr-incremental-rendering-client");
```### Standalone use
Load the `global` version of the plugin:
```html
```