A rewrite of the desktop application PostyBirb using TypeScript, NestJS, React, and Electron.
Shared interfaces, models, etc. between the UI and Backend
Electron-App (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:
- clone this repository and
cd
into it. npm run contribute
to install dependencies in every folder
INSTALL TROUBLESHOOTING
Temporary until react-scripts will be replaced with vite
If something does not work and you can't determine where error happened (since there is 3 parallel scripts) run npm run contribute:debug
Error
Error: error:0308010C:digital envelope routines::unsupported
at new Hash (node:internal/crypto/hash:71:19)
at Object.createHash (node:crypto:133:10)
at module.exports (ui\node_modules\webpack\lib\util\createHash.js:135:53)
at NormalModule._initBuildHash (ui\node_modules\webpack\lib\NormalModule.js:417:16)
at ui\node_modules\webpack\lib\NormalModule.js:452:10
at ui\node_modules\webpack\lib\NormalModule.js:323:13
at ui\node_modules\loader-runner\lib\LoaderRunner.js:367:11
at ui\node_modules\loader-runner\lib\LoaderRunner.js:233:18
at context.callback (ui\node_modules\loader-runner\lib\LoaderRunner.js:111:13)
at ui\node_modules\babel-loader\lib\index.js:55:103
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
}
To fix this error, replace react-scripts build
with react-scripts --openssl-legacy-provider build
npm run start
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!