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/consolidate
Advanced tools
npm install --save @types/consolidate
This package contains type definitions for consolidate (https://github.com/visionmedia/consolidate.js).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/consolidate.
// Imported from: https://github.com/soywiz/typescript-node-definitions/consolidate.d.ts
/// <reference types="node" />
import Promise = require("bluebird");
declare var cons: Consolidate;
export = cons;
type SupportedTemplateEngines =
| "arc-templates"
| "atpl"
| "bracket"
| "dot"
| "dust"
| "eco"
| "ejs"
| "ect"
| "haml"
| "haml-coffee"
| "hamlet"
| "handlebars"
| "hogan"
| "htmling"
| "jade"
| "jazz"
| "jqtpl"
| "just"
| "liquid"
| "liquor"
| "lodash"
| "marko"
| "mote"
| "mustache"
| "nunjucks"
| "plates"
| "pug"
| "qejs"
| "ractive"
| "razor"
| "react"
| "slm"
| "squirrelly"
| "swig"
| "teacup"
| "templayed"
| "toffee"
| "twig"
| "underscore"
| "vash"
| "velocityjs"
| "walrus"
| "whiskers";
type Requires = SupportedTemplateEngines | "extend" | "ReactDOM" | "babel";
type ConsolidateType = {
[engine in SupportedTemplateEngines]: RendererInterface;
};
type RequiresType = {
[engine in Requires]: any;
};
interface Consolidate extends ConsolidateType {
/**
* expose the instance of the engine
*/
requires: RequiresType;
/**
* Clear the cache.
*
* @api public
*/
clearCache(): void;
}
interface RendererInterface {
render(path: string, fn: (err: Error, html: string) => any): any;
render(
path: string,
options: { cache?: boolean | undefined; [otherOptions: string]: any },
fn: (err: Error, html: string) => any,
): any;
render(path: string, options?: { cache?: boolean | undefined; [otherOptions: string]: any }): Promise<string>;
(path: string, fn: (err: Error, html: string) => any): any;
(
path: string,
options: { cache?: boolean | undefined; [otherOptions: string]: any },
fn: (err: Error, html: string) => any,
): any;
(path: string, options?: { cache?: boolean | undefined; [otherOptions: string]: any }): Promise<string>;
}
These definitions were written by Carlos Ballesteros Velasco, Theo Sherry, Nicolas Henry, and Andrew Leedham.
FAQs
TypeScript definitions for consolidate
The npm package @types/consolidate receives a total of 5,360 weekly downloads. As such, @types/consolidate popularity was classified as popular.
We found that @types/consolidate 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.