python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Electron fs.writeFileSync in absolute path
This is my code:
ipcMain.on('saveFile', async (event, path, fileName, data) => {
fs.readFile(data, (err, data) => {
if (err) throw err;
fs.writeFileSync(path+fileName, data, 'binary');
...

Ignacio Lombardi
Votes: 0
Answers: 1
Setting up sqlcipher in an electron app using electron-forge and webpack
I am trying to open a sqlite3 database encrypted with sqlcipher. I have the password and I could open it successfully using sqlitebrowser.
I started my project using this template. It is based on the ...
clementlize
Votes: 0
Answers: 1
electron run page with flash player
I make a browser with ELECTRO and need run webpage with flash. Above my code man.js
How can config this code for run flash player? I put .dll flash player beside the code out the folder
const {app, Br...
Eduardo
Votes: 0
Answers: 1