Socket
Socket
Sign inDemoInstall

firescript-firefs

Package Overview
Dependencies
23
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    firescript-firefs

File System lib for Firescript


Version published
Weekly downloads
13
increased by44.44%
Maintainers
1
Install size
3.87 MB
Created
Weekly downloads
 

Readme

Source

FireFS

File System lib for Firescript

Usage

Check file or dir exists
import FireFS from 'firescript-firefs'

const fs = await FireFS.path('/foo/bar/blub')

if (fs.exists) {
  console.log('File exists')
}
Check file or dir exists shorthand
import FireFS from 'firescript-firefs'

const content = await FireFS.pathExists('/foo/bar/blub')
Read file
import FireFS from 'firescript-firefs'

const fs = await FireFS.file('/foo/bar/blub')
const content = await fs.read()
Read file shorthand
import FireFS from 'firescript-firefs'

const content = await FireFS.readFile('/foo/bar/blub')
Write file
import FireFS from 'firescript-firefs'

const fs = await FireFS.file('/foo/bar/blub')
await fs.write('Content')
Write file shorthand
import FireFS from 'firescript-firefs'

const fs = await FireFS.writeFile('/foo/bar/blub', 'Content')
Read JSON file
import FireFS from 'firescript-firefs'

const fs = await FireFS.file('/foo/bar/blub.json')
const json = await fs.readJSON()
Read JSON file shorthand
import FireFS from 'firescript-firefs'

const json = await FireFS.readJSON('/foo/bar/blub.json')
Write JSON file
import FireFS from 'firescript-firefs'

const fs = await FireFS.file('/foo/bar/blub')
await fs.writeJSON('Content')
Write JSON file shorthand
import FireFS from 'firescript-firefs'

const fs = await FireFS.writeJSON('/foo/bar/blub', 'Content')
Check whether a file or dir exists

returns bool true if path exists, otherwise false

import FireFS from 'firescript-firefs'

const exists = await FireFS.pathExists('/foo/bar/blub')
Read dir
import FireFS from 'firescript-firefs'

const fs = await FireFS.dir('/foo/bar/blub')
const content = await fs.list()
Read dir shorthand
import FireFS from 'firescript-firefs'

const content = await FireFS.readDir('/foo/bar/blub')
Watch file
import FireFS from 'firescript-firefs'

const fs = await FireFS.file('/foo/bar/blub/foo.txt')
const content = await fs.watch((fl) => {
  console.log(`File ${fl.name} changed`)
})
Watch dir
import FireFS from 'firescript-firefs'

const fs = await FireFS.dir('/foo/bar/blub/')
const content = await fs.watch((fl) => {
  console.log(`File ${fl.name} changed`)
})

Keywords

FAQs

Last updated on 05 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc