├── .gitignore ├── README.md ├── index.html ├── main.js ├── package.json ├── screenshot2.png └── script.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/package.json -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/screenshot2.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolanlawson/hello-electron-with-pouchdb/HEAD/script.js --------------------------------------------------------------------------------