
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
firescript-firefs
Advanced tools
File System lib for Firescript
import FireFS from 'firescript-firefs'
const fs = await FireFS.path('/foo/bar/blub')
if (fs.exists) {
console.log('File exists')
}
import FireFS from 'firescript-firefs'
const content = await FireFS.pathExists('/foo/bar/blub')
import FireFS from 'firescript-firefs'
const fs = await FireFS.file('/foo/bar/blub')
const content = await fs.read()
import FireFS from 'firescript-firefs'
const content = await FireFS.readFile('/foo/bar/blub')
import FireFS from 'firescript-firefs'
const fs = await FireFS.file('/foo/bar/blub')
await fs.write('Content')
import FireFS from 'firescript-firefs'
const fs = await FireFS.writeFile('/foo/bar/blub', 'Content')
import FireFS from 'firescript-firefs'
const fs = await FireFS.file('/foo/bar/blub.json')
const json = await fs.readJSON()
import FireFS from 'firescript-firefs'
const json = await FireFS.readJSON('/foo/bar/blub.json')
import FireFS from 'firescript-firefs'
const fs = await FireFS.file('/foo/bar/blub')
await fs.writeJSON('Content')
import FireFS from 'firescript-firefs'
const fs = await FireFS.writeJSON('/foo/bar/blub', 'Content')
returns bool true if path exists, otherwise false
import FireFS from 'firescript-firefs'
const exists = await FireFS.pathExists('/foo/bar/blub')
import FireFS from 'firescript-firefs'
const fs = await FireFS.dir('/foo/bar/blub')
const content = await fs.list()
import FireFS from 'firescript-firefs'
const content = await FireFS.readDir('/foo/bar/blub')
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`)
})
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`)
})
FAQs
File System lib for Firescript
We found that firescript-firefs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.