Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
stream-file-type
Advanced tools
Get the [file type](https://github.com/sindresorhus/file-type) by inspecting a stream.
Get the file type by inspecting a stream.
import fs from 'node:fs'
import FileType from 'stream-file-type'
const input = fs.createReadStream('cat.jpg')
const detector = new FileType()
// Listen for event...
detector.on('file-type', (fileType) => {
if (fileType === null) {
console.log(`The mime type of "cat.jpg" could not be determined`)
} else {
console.log(`The file "cat.jpg" has the "${fileType.mime}" mime type`)
}
})
// ...or get a Promise
detector.fileTypePromise().then((fileType) => {
if (fileType === null) {
console.log(`The mime type of "cat.jpg" could not be determined`)
} else {
console.log(`The file "cat.jpg" has the "${fileType.mime}" mime type`)
}
})
input.pipe(detector).resume()
new FileType() => DuplexStream
Returns a new DuplexStream
that will detect the file type of the content passing thru. All the data is passed as-is right thru the stream, and can be further piped to another destination.
When enough bytes have come thru to determine the file type (currently 4100) the event file-type
will be emitted with the result of the detection. The result will either be null
or an object with ext
and mime
.
ext
- One of the supported file typesmime
- The MIME typeFileType#fileTypePromise() => Promise
Returns a Promise
of the detected file type. If the file-type
event has already been emitted, the promise will be resolved with the result, otherwise the promise will be resolved when the file-type is detected.
FAQs
Get the [file type](https://github.com/sindresorhus/file-type) by inspecting a stream.
The npm package stream-file-type receives a total of 2,914 weekly downloads. As such, stream-file-type popularity was classified as popular.
We found that stream-file-type 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.