A rewrite of the desktop application PostyBirb using TypeScript, NestJS, React, and Electron.
Shared interfaces, models, etc. between the UI and Backend
ElectronJS + NestJs that handles running the local server and the desktop application itself. This is where all posting magic happens.
React code that handles UI of the application displayed in the desktop application.
To set up a local copy of PostyBirb for development:
cd
into it.npm run contribute
to install dependencies in every folderPlease not that if you have node version 16 and above (you can check that by running node -v
), you should use NODE_OPTIONS=--openssl-legacy-provider npm run contribute
instead
npm run start
To build production vesrion of the PostyBirb, use the following:
npm run build
Please not that if you have node version 16 and above (you can check that by running node -v
), you should use NODE_OPTIONS=--openssl-legacy-provider npm run build
instead
And then, depending on your build target, use this command:
cd electron-app && yarn run release:windows
cd electron-app && yarn run release:linux
cd electron-app && yarn run release:osx
Pending
If you are interested in adding features or websites to the application, please let me know.
PR branch is develop.
Dont forget to npm run test --prefix electron-app
before pull
Also run npm run codestyle
if you haven't installed eslint and prettier extensions!