https://github.com/giddyeffects/bookmarking_app
A simple bookmarking App using Electron and updated to use latest VueJs 2+ and latest Firebase SDK
https://github.com/giddyeffects/bookmarking_app
electron firebase-database vuejs2 webpack
Last synced: 2 months ago
JSON representation
A simple bookmarking App using Electron and updated to use latest VueJs 2+ and latest Firebase SDK
- Host: GitHub
- URL: https://github.com/giddyeffects/bookmarking_app
- Owner: giddyeffects
- Created: 2017-08-16T09:46:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T13:30:12.000Z (over 3 years ago)
- Last Synced: 2025-07-10T08:34:27.241Z (12 months ago)
- Topics: electron, firebase-database, vuejs2, webpack
- Language: Vue
- Size: 1.4 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple bookmarking App using Electron and updated to use latest VueJs 2+ and latest Firebase SDK
This is an update for the electron version (1.6.11), webpack version (3.5.4), latest VueJS version (2.4.2) and the latest Firebase SDK (4.2.0) for the tutorial by [coligo](http://coligo.io/bookmarking-app-electron-vuejs-firebase/)
### Clone the repository
``` git clone https://github.com/giddyeffects/bookmarking_app ```
### Setup Firebase database config file
Create a file called **config.js** in the folder **app/store/** with contents below
```javascript
let config = {
apiKey: "",
authDomain: ".firebaseapp.com",
databaseURL: "https://.firebaseio.com",
projectId: "",
storageBucket: ".appspot.com",
messagingSenderId: ""
};
export default config
```
### Install dependencies
Change directory to
```bash
npm install
```
### Run the build
```bash
webpack
```
or
```bash
node_modules\.bin\webpack (if you have installed webpack locally)
```
### Launch the App
```bash
npm start
```
And start bookmarking your favourite sites...
### @TODO
More updates expected: e.g. Add full CRUD to categories and bookmarks