tryagain
v1.0.8
Published
tryagain
Downloads
7
Maintainers
Readme
tryagain
Get the AMD module located at tryagain.js
and include it in your project.
Here is a sample integration:
require.config({
paths: {
'react': 'vendor/bower_components/react/react',
'Tryagain': 'tryagain'
}
});
require(['react', 'Tryagain'], function(React, Tryagain) {
React.render(React.createElement(Tryagain), document.getElementById('widget-container'));
});
Development
- Development server
npm start
. - Continuously run tests on file changes
npm run watch-test
; - Run tests:
npm test
; - Build
npm run build
;