├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.js ├── routes │ └── pages.js └── views │ ├── layouts │ └── main.html │ └── pages │ └── home.html ├── bower.json ├── config.json ├── gulpfile.js ├── main.js ├── package.json └── public ├── css ├── main.css └── main.scss └── js ├── bundle.js └── core └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/app/app.js -------------------------------------------------------------------------------- /app/routes/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/app/routes/pages.js -------------------------------------------------------------------------------- /app/views/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/app/views/layouts/main.html -------------------------------------------------------------------------------- /app/views/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/app/views/pages/home.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/bower.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/config.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/gulpfile.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/package.json -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/main.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theallmightyjohnmanning/electron-express/HEAD/public/js/bundle.js -------------------------------------------------------------------------------- /public/js/core/main.js: -------------------------------------------------------------------------------- 1 | $ = require('jquery'); 2 | --------------------------------------------------------------------------------