Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ patches/mtime-cache.json

spec/fixtures/logo.png

/out
/viewfx-win32-x64
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ $ npm install --save-dev electron
$ npm start
```

## Build program

> Note: You need to have `choco` installed on your win machine

https://github.com/electron/electron-packager

```bash
$ npm install --save-dev electron-packager
$ npx electron-packager .
```

# Ref

- https://redstapler.co/realtime-video-processing-javascript-tutorial/
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"author": "Ricardo J Marques Montilla",
"license": "TBD",
"devDependencies": {
"electron": "^18.0.0"
"electron": "^18.0.0",
"electron-packager": "^15.5.1"
}
}