
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
files-of-type
Advanced tools
A small utility that grabs and returns an array of all the file names of a specific type located in specified directory.
A small utility that grabs and returns a promise that resolves to an array of all the file names of a specific type located in specified directory. Returns an empty array if no files were found.
npm i files-of-type
or
yarn add files-of-type
/**
* Create an array of filenames of specific type.
* @param fileType - the file extension you are searching for
* @param filePath - the path to directory you would like to search. Defaults to __dirname
* @returns <Promise> which will eventually resolve to an array with either the files names or empty
*/
const filesOfType = require('file-of-type');
filesOfType('.js').
then(files => {
files.map(file => console.log(file));
});
FAQs
A small utility that grabs and returns an array of all the file names of a specific type located in specified directory.
We found that files-of-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
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.