排版参考
英文
Quick Start
# clone the project
git clone https://github.com/caoxiemeihao/electron-vite-vue.git
# enter the project directory
cd electron-vite-vue
# install dependency
npm install
# develop
npm run dev
下面添加一些git图
API
utputFileSync(file, data[, options]):NoReturn
Almost the same as writeFileSync (i.e. it overwrites), except that if the parent directory does not exist, it's created. file must be a file path (a buffer or a file descriptor is not allowed).
file<String>data<String> | <Buffer> | <Uint8Array>options<Object> | <String>(the same asfs.writeFileSync()options)
Example:
const fs = require('fs-extra')
const file = '/tmp/this/path/does/not/exist/file.txt'
fs.outputFileSync(file, 'hello!')
const data = fs.readFileSync(file, 'utf8')
console.log(data) // => hello!