diff --git a/README.md b/README.md new file mode 100644 index 0000000..e536ede --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Vanity ETH + +Online ETH vanity address generator + +## Local usage + +Just clone the repo and open `index.html` with your web browser + +## Local development + +Install dependencies + +```sh +npm i +``` + +Run the watcher to browserify JS as you code + +```sh +npm run-script watch +``` + +Browserify / babelify /uglify before pushing to production + +```sh +npm run-script build +``` diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..3724533 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,31 @@ +const gulp = require('gulp'); +const pump = require('pump'); + +const browserify = require('browserify'); +const babel = require('gulp-babel'); +const uglify = require('gulp-uglify'); +const source = require('vinyl-source-stream'); + +// Browserify +gulp.task('browserify', cb => { + pump([ + browserify('js/index.js').bundle(), + source('bundle.js'), + gulp.dest('js') + ], cb); +}); + +// Browserify then babelify, then uglify +gulp.task('build', ['browserify'], cb => { + pump([ + gulp.src('js/bundle.js'), + babel({presets: ['env']}), + uglify(), + gulp.dest('js') + ], cb); +}); + +// Watch changes and browserify on the fly +gulp.task('watch', () => { + gulp.watch(['js/index.js', 'js/vanity.js'], ['browserify']); +}); diff --git a/index.html b/index.html new file mode 100644 index 0000000..3a37298 --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ + + +
+ + + +