| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This wrapper allows the usage of iota.flash.js lib directly in Java. This is achieved by running the iota.flash.js script and all dependencies (modified build of iota.flash.js) in the V8 engine (using J2V8 bindings for V8). If you have any ideas please submit a request (I am totally not a Java guy so...)
I will try to update the iota.flash.js as often as I can till it is automated. To manually update the lib do the following:
gulp.task('dist', () => {
return gulp.src('lib/flash.js')
.pipe(webpack({
output: {
filename: 'iota.flash.js',
libraryTarget: 'umd',
library: 'iotaFlash',
umdNamedDefine: true
}
}))
.pipe(gulp.dest(DEST))
});| Back | FazBrowse Home | New Git URL |