TypeScript reZach/secure-electron-store Star51 A secure electron-store that uses ipcMain/ipcRenderer. electronsecureelectron-store UpdatedJan 26, 2025 JavaScript 3529/fish-book Star42 Code Issues Pull requests fish-book 是一款可以隐蔽式阅读小说的工具(摸鱼),基于 electron、vue2、vuex、element-ui、el...
Readme Keywords electron typescript vuejs vuexPackage Sidebar Install npm i vuex-electron-store-vue3 Repository github.com/elliottcooper/vuex-electron-store-vue3 Homepage github.com/elliottcooper/vuex-electron-store-vue3#readme Weekly Downloads 0 Version 2.0.2 License MIT Unpacked Size 42.7 kB ...
✔ Add TypeScript? … Yes ✔ Add Electron updater plugin? … Yes ✔ Enable Electron download mirror proxy? … Yes add these lines in main/index.ts bottom import { rimrafSync } from 'rimraf'; import { mkdirSync } from 'fs'; mkdirSync('aaa', {recursive: true}); rimrafSync('aaa'...
vue.jselectrontypescriptreactgithub 之前用 electron-vue 写过一个半成品的桌面端应用,但是是基于 Vue2 的,最近又想重写点桌面端应用,想要上 Vue3+TypeScript,于是便有了这篇文章总结下具体的搭建过程。 愧怍 2022/12/27 1.9K0 如何开发Vite3插件构建Electron开发环境 vue.jselectronjsonjavascript渲染 开发新版本...
6个月前 tsconfig.electron.json 初始化 6个月前 tsconfig.json 初始化 6个月前 tsconfig.node.json 初始化 6个月前 tsconfig.vitest.json 初始化 6个月前 简介 暂无描述 暂无标签 TypeScript等 6 种语言 保存更改 发行版 暂无发行版 贡献者(2) 全部...
"typescript": "^3.9.9", "vue-cli-plugin-electron-builder": "~2.1.1", "vuex-module-decorators": "^1.0.1" }, "engines": { "node": ">=14.0.0 <15" } } I finally managed to fix my problem, to be honest I don't know what it was. ...
This package is now pure ESM. Please read this and this. For TypeScript users, make sure you have the correct tsconfig. Improvements Update dependencies 7ddf0c6 v8.2.0...v9.0.0 Assets 2 Loading 👀 1 1 person reacted v8.2.008 Mar 06:12 sindresorhus v8.2.0 449b5ee Compare v...
Type: boolean Default: trueAccessing nested properties by dot notation. For example:import Store from 'electron-store'; const store = new Store(); store.set({ foo: { bar: { foobar: '🦄' } } }); console.log(store.get('foo.bar.foobar')); //=> '🦄'...
Releases 2 1.1.0 Latest Oct 29, 2017 + 1 release Packages No packages published Contributors 5 Languages JavaScript 74.4% TypeScript 25.6% Footer © 2025 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact Manage cookies Do not share my personal information ...
const Store = require('electron-store'); const schema = { foo: { type: 'number', maximum: 100, minimum: 1, default: 50 }, bar: { type: 'string', format: 'url' } }; const store = new Store({schema}); console.log(store.get('foo')); //=> 50 store.set('foo', '1');...