Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@types/folder-hash
Advanced tools
TypeScript definitions for folder-hash
npm install --save @types/folder-hash
This package contains type definitions for folder-hash (https://github.com/marc136/node-folder-hash#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/folder-hash.
export type PathGlobFunction = () => string[];
export interface FolderAndFileOptions {
exclude?: string[] | PathGlobFunction | undefined;
include?: string[] | PathGlobFunction | undefined;
matchBasename?: boolean | undefined;
matchPath?: boolean | undefined;
ignoreBasename?: boolean | undefined;
ignoreRootName?: boolean | undefined;
}
export type SymbolicLinkOptions = Omit<FolderAndFileOptions, "exclude" | "include"> & {
include?: boolean | undefined;
ignoreTargetPath?: boolean | undefined;
ignoreTargetContent?: boolean | undefined;
ignoreTargetContentAfterError?: boolean | undefined;
};
export interface HashElementOptions {
// See crypto.getHashes() for options.
// Defaults to 'sha1'.
algo?: string | undefined;
// Defaults to 'base64'
encoding?: "base64" | "base64url" | "hex" | "binary" | undefined;
files?: FolderAndFileOptions | undefined;
folders?: FolderAndFileOptions | undefined;
symbolicLinks?: SymbolicLinkOptions | undefined;
}
export interface HashElementNode {
name: string;
hash: string;
children: HashElementNode[];
}
/**
* @param name element name or an element's path
* @param options Options object
*/
export function hashElement(name: string, options?: HashElementOptions): Promise<HashElementNode>;
/**
* @param name element name or an element's path
* @param dir directory that contains the element (generated from name if omitted)
* @param options Options object
*/
export function hashElement(name: string, dir?: string, options?: HashElementOptions): Promise<HashElementNode>;
/**
* @param name element name or an element's path
* @param dir directory that contains the element (generated from name if omitted)
* @param options Options object
* @param callback Error-first callback function
*/
export function hashElement(
name: string,
dir?: string,
options?: HashElementOptions,
callback?: (error?: Error, result?: HashElementNode) => any,
): void;
export const defaults: HashElementOptions;
These definitions were written by Kevin Brown, Piotr Błażejewicz, and Marc Walter.
FAQs
TypeScript definitions for folder-hash
We found that @types/folder-hash 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
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.