├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | .eslintcache 25 | 26 | # Dependency directory 27 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 28 | node_modules 29 | 30 | # OSX 31 | .DS_Store 32 | 33 | # flow-typed 34 | flow-typed/npm/* 35 | !flow-typed/npm/module_vx.x.x.js 36 | 37 | # App packaged 38 | release 39 | app/main.prod.js 40 | app/main.prod.js.map 41 | app/renderer.prod.js 42 | app/renderer.prod.js.map 43 | app/style.css 44 | app/style.css.map 45 | dist 46 | dll 47 | main.js 48 | main.js.map 49 | 50 | .idea 51 | npm-debug.log.* 52 | target 53 | index.node 54 | artifacts.json 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Electron React Boilerplate Examples 2 | 3 | ## Examples 4 | 5 | **Native Modules Example** 6 | * [sqlite3](https://github.com/amilajack/erb-sqlite-example) 7 | * [better-sqlite3](https://github.com/amilajack/erb-better-sqlite3-example) 8 | * [serialport](https://github.com/amilajack/erb-serialport-example) 9 | 10 | **Second Renderer Window** 11 | * [second renderer window](https://github.com/amilajack/erb-second-renderer-window-example) 12 | 13 | **CSS and Styling** 14 | * [Tailwind](https://github.com/amilajack/erb-tailwind-example) 15 | * [Ant Design](https://github.com/amilajack/erb-ant-design-example) 16 | * [Bootstrap](https://github.com/amilajack/erb-bootstrap-example) 17 | 18 | **Miscellaneous** 19 | * [express](https://github.com/amilajack/erb-express-example) 20 | * [monorepo](https://github.com/amilajack/erb-monorepo-example) 21 | * [package in yarn workspaces](https://github.com/vikr01/erb-with-workspaces-example) 22 | * [html video](https://github.com/amilajack/erb-video-example) 23 | * [importing audio files](https://github.com/amilajack/erb-audio-example) 24 | * [reading local files at runtime in dev and prod env](https://github.com/amilajack/erb-local-fs-read-example) 25 | * [menubar application](https://github.com/3on/electron-react-boilerplate-menubar) 26 | * [mobx](https://github.com/gzgogo/electron-react-mobx-boilerplate) 27 | --------------------------------------------------------------------------------