All Projects → Cocycles → Electron Storage

Cocycles / Electron Storage

Licence: mit
Simply save/load json files to/from file system in electron applications

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Electron Storage

torrentfs
A p2p file system for cortex with pure Golang
Stars: ✭ 27 (-75.23%)
Mutual labels:  storage, file-system
cruise
User space POSIX-like file system in main memory
Stars: ✭ 27 (-75.23%)
Mutual labels:  storage, file-system
go-storage
A vendor-neutral storage library for Golang: Write once, run on every storage service.
Stars: ✭ 387 (+255.05%)
Mutual labels:  storage, fs
React Native Fetch Blob
This project was started in the cause of solving issue facebook/react-native#854, React Native's lacks of Blob implementation which results into problems when transferring binary data.
Stars: ✭ 2,593 (+2278.9%)
Mutual labels:  storage, file-system
Moosefs
MooseFS – Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System (Software-Defined Storage)
Stars: ✭ 1,025 (+840.37%)
Mutual labels:  storage, file-system
matched
Glob matching with support for multiple patterns and negation. Use `~` in cwd to find files in user home, or `@` for global npm modules.
Stars: ✭ 25 (-77.06%)
Mutual labels:  fs, file-system
vue-fs
A Vue file management client, complete with a node/express/FS backend.
Stars: ✭ 40 (-63.3%)
Mutual labels:  fs, file-system
MeowDB.js
Database in JSON (Node.JS Library)
Stars: ✭ 12 (-88.99%)
Mutual labels:  storage, fs
fs-utils
Generalized file and path utils for Node.js projects.
Stars: ✭ 33 (-69.72%)
Mutual labels:  fs, file-system
readdir
Recursively read a directory, blazing fast. Use with picomatch or micromatch to match globs.
Stars: ✭ 37 (-66.06%)
Mutual labels:  fs, file-system
Filebase
A Simple but Powerful Flat File Database Storage.
Stars: ✭ 235 (+115.6%)
Mutual labels:  storage, file-system
Zbox
Zero-details, privacy-focused in-app file system.
Stars: ✭ 1,185 (+987.16%)
Mutual labels:  storage, fs
Go Fastdfs
go-fastdfs 是一个简单的分布式文件系统(私有云存储),具有无中心、高性能,高可靠,免维护等优点,支持断点续传,分块上传,小文件合并,自动同步,自动修复。Go-fastdfs is a simple distributed file system (private cloud storage), with no center, high performance, high reliability, maintenance free and other advantages, support breakpoint continuation, block upload, small file merge, automatic synchronization, automatic r…
Stars: ✭ 2,923 (+2581.65%)
Mutual labels:  storage, file-system
write-yaml
Basic node.js utility for converting JSON to YAML and writing formatting YAML files to disk.
Stars: ✭ 38 (-65.14%)
Mutual labels:  fs, file-system
bash-glob
Bash-powered globbing for node.js. Alternative to node-glob. Does not work on Windows 9 and lower.
Stars: ✭ 13 (-88.07%)
Mutual labels:  fs, file-system
Write
Write data to the file system, creating any intermediate directories if they don't already exist. Used by flat-cache and many others!
Stars: ✭ 68 (-37.61%)
Mutual labels:  fs, file-system
Go Storage
An application-oriented unified storage layer for Golang.
Stars: ✭ 87 (-20.18%)
Mutual labels:  storage, fs
S3fs
S3 FileSystem (fs.FS) implementation
Stars: ✭ 93 (-14.68%)
Mutual labels:  fs
Foundatio
Pluggable foundation blocks for building distributed apps.
Stars: ✭ 1,365 (+1152.29%)
Mutual labels:  storage
Hoarder
A simple, api-driven storage system for storing code builds and cached libraries for cloud-based deployment services.
Stars: ✭ 91 (-16.51%)
Mutual labels:  storage

electron-storage

simple storage managing module for electron

Electron saves data in app.getPath("userData") folder, which is different in every os. electron-storage gives simple methods to get and set json files to this directory.

  • Creates subdirectories if needed - that means you can write movies/StarWars.json as path, a movies folder will be created and a StarWars.json file inside.
  • Supports callbacks and promises.
  • The data inserted can be a javascript object, or stringified json.
  • You don't have to write .json in the end of a file path, it will add it for you.

NPM [Package Quality](http://packagequality.com/#?package=electron- storage)

npm version license issues forks stars twitter

Installation

$ npm install --save electron-storage

usage

const storage = require('electron-storage');

API

get

get a json file from storage.

storage.get(filePath, cb)

storage.get(filePath, (err, data) => {
  if (err) {
    console.error(err)
  } else {
    console.log(data);
  }
});

storage.get(filePath)

storage.get(filePath)
.then(data => {
  console.log(data);
})
.catch(err => {
  console.error(err);
});

set

set a json file to storage.

storage.set(filePath, data, cb)

storage.set(filePath, data, (err) => {
  if (err) {
    console.error(err)
  }
});

storage.set(filePath, data)

storage.set(filePath, data)
.then(() => {
  console.log('The file was successfully written to the storage');
})
.catch(err => {
  console.error(err);
});

isPathExists

check if a file or directory exists.

// you have to write .json suffix for json files.
// this method works on directories as well, if you don't write `.json` suffix it checks for a directory.

storage.isPathExists(path, cb)

storage.isPathExists(path, (itDoes) => {
  if (itDoes) {
    console.log('pathDoesExists !')
  }
});

storage.isPathExists(path)

storage.isPathExists(path)
.then(itDoes => {
  if (itDoes) {
    console.log('pathDoesExists !')
  }
});

remove

remove a file or a directory from storage

storage.remove(path, cb)

storage.remove(path, err => {
  if (err) {
    console.log(err)
  }
});

storage.remove(path)

storage.remove(path)
.then(err => {
  if (err) {
    console.log(err)
  }
});

Development

npm run build for creating es5 files in dist folder

Contribute

Contributions are welcome! please open issues and pull request :)

License

The MIT License (MIT) Copyright (c)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].