Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@typescript/twoslash
Advanced tools
A markup format for TypeScript code, ideal for creating self-contained code samples which let the TypeScript compiler do the extra leg-work. Inspired by the [fourslash test system](https://github.com/orta/typescript-notes/blob/master/systems/testing/fours
A markup format for TypeScript code, ideal for creating self-contained code samples which let the TypeScript compiler do the extra leg-work. Inspired by the fourslash test system.
Used as a pre-parser before showing code samples inside the TypeScript website and to create a standard way for us to create examples for bugs on the compiler's issue tracker.
You can preview twoslash on the TypeScript website here: https://www.typescriptlang.org/dev/twoslash/
It might be easier to show instead of telling, here is an example of code from the TypeScript handbook. We'll use twoslash to let the compiler handle error messaging and provide rich highlight info.
Tuple types allow you to express an array with a fixed number of elements whose types are known, but need not be the same. For example, you may want to represent a value as a pair of a
string
and anumber
:
```ts // Declare a tuple type let x: [string, number]; // Initialize it x = ["hello", 10]; // OK // Initialize it incorrectly x = [10, "hello"]; // Error ```
When accessing an element with a known index, the correct type is retrieved:
```ts console.log(x[0].substring(1)) // OK console.log(x[1].substring(1)) // Error, 'number' does not have 'substring' ```
Tuple types allow you to express an array with a fixed number of elements whose types are known, but need not be the same. For example, you may want to represent a value as a pair of a
string
and anumber
:
```ts twoslash // @errors: 2322 // Declare a tuple type let x: [string, number]; // Initialize it x = ["hello", 10]; // Initialize it incorrectly x = [10, "hello"]; ```
When accessing an element with a known index, the correct type is retrieved:
```ts // @errors: 2339 let x: [string, number]; x = ["hello", 10]; // OK /// ---cut--- console.log(x[0].substring(1)); console.log(x[1].substring(1)); ```
Switching this code sample to use twoslash has a few upsides:
On the flip side, it's a bit more verbose because every twoslash example is a unique compiler environment - so you need to include all the dependent code in each example.
The Twoslash markup language helps with:
// prettier-ignore
are strippedThe twoslash markup API lives inside your code samples code as comments, which can do special commands. There are the following commands:
/** Available inline flags which are not compiler flags */
export interface ExampleOptions {
/** Lets the sample suppress all error diagnostics */
noErrors: boolean
/** An array of TS error codes, which you write as space separated - this is so the tool can know about unexpected errors */
errors: number[]
/** Shows the JS equivalent of the TypeScript code instead */
showEmit: boolean
/**
* Must be used with showEmit, lets you choose the file to present instead of the source - defaults to index.js which
* means when you just use `showEmit` above it shows the transpiled JS.
*/
showEmittedFile: string
/** Whether to disable the pre-cache of LSP calls for interesting identifiers, defaults to false */
noStaticSemanticInfo: boolean
/** Declare that the TypeScript program should edit the fsMap which is passed in, this is only useful for tool-makers, defaults to false */
emit: boolean
/** Declare that you don't need to validate that errors have corresponding annotations, defaults to false */
noErrorValidation: boolean
}
In addition to this set, you can use @filename
which allow for exporting between files.
Finally you can set any tsconfig compiler flag using this syntax, which you can see in some of the examples below.
compiler_errors.ts
// @target: ES2015
// @errors: 7006
function fn(s) {
console.log(s.subtr(3))
}
fn(42)
Turns to:
function fn(s) {
console.log(s.subtr(3))
}
fn(42)
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 7 items ]",
"errors": [
{
"category": 1,
"code": 7006,
"length": 1,
"start": 13,
"line": 1,
"character": 12,
"renderedMessage": "Parameter 's' implicitly has an 'any' type.",
"id": "err-7006-13-1"
}
],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEBcEMCcHMCmkBcoCiBlATABgIwCsAUCBIrLAPawDOaA7LrgGzHEBmArgHYDGkAJZUeoDjwAUtAJSgA3sVCg+I2lQA2iAHTqq8KVtpcARpFgSAzNOnEAvu3ESALNhtA",
"tags": []
}
compiler_flags.ts
// @noImplicitAny: false
// @target: ES2015
// This will not throw because of the noImplicitAny
function fn(s) {
console.log(s.subtr(3))
}
fn(42)
Turns to:
// This will not throw because of the noImplicitAny
function fn(s) {
console.log(s.subtr(3))
}
fn(42)
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 7 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEDsHsEkFsAOAbAlgY1QFwIKQJ4BcoAZgIbIDOApgFAgRZkBOA5tVsQKIDKATAAYAjAFZa9MABUAFqkqgA7qmTJQMLKCzTm0BaABG1dGQCuNUNBKbp1NXCRpMuArRInI6LKmiRSkABSUAJSgAN60oKDoPpTQyNQAdMjQrIEJlCb6WMz+AMxBQbQAvuIkAQAsfEEA3LRAA",
"tags": []
}
completions.ts
console.log
// ^|
Turns to:
console.log
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [
{
"completions": [
{
"name": "assert",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "clear",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "count",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "countReset",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "debug",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "dir",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "dirxml",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "error",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "group",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "groupCollapsed",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "groupEnd",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "info",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "log",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "table",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "time",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "timeEnd",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "timeLog",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "timeStamp",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "trace",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
},
{
"name": "warn",
"kind": "method",
"kindModifiers": "declare",
"sortText": "11"
}
],
"kind": "completions",
"start": 9,
"completionsPrefix": "l",
"length": 1,
"offset": 9,
"line": 1
}
],
"staticQuickInfos": "[ 2 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/MYewdgziA2CmB00QHMBQB6dACHusD0AfVIA",
"tags": []
}
cuts_out_unnecessary_code.ts
interface IdLabel {
id: number /* some fields */
}
interface NameLabel {
name: string /* other fields */
}
type NameOrId<T extends number | string> = T extends number ? IdLabel : NameLabel
// This comment should not be included
// ---cut---
function createLabel<T extends number | string>(idOrName: T): NameOrId<T> {
throw "unimplemented"
}
let a = createLabel("typescript")
// ^?
let b = createLabel(2.8)
// ^?
let c = createLabel(Math.random() ? "hello" : 42)
// ^?
Turns to:
function createLabel<T extends number | string>(idOrName: T): NameOrId<T> {
throw "unimplemented"
}
let a = createLabel("typescript")
let b = createLabel(2.8)
let c = createLabel(Math.random() ? "hello" : 42)
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [
{
"docs": "",
"kind": "query",
"start": 354,
"length": 16,
"text": "let a: NameLabel",
"offset": 4,
"line": 5
},
{
"docs": "",
"kind": "query",
"start": 390,
"length": 14,
"text": "let b: IdLabel",
"offset": 4,
"line": 7
},
{
"docs": "",
"kind": "query",
"start": 417,
"length": 26,
"text": "let c: NameLabel | IdLabel",
"offset": 4,
"line": 9
}
],
"staticQuickInfos": "[ 14 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/JYOwLgpgTgZghgYwgAgJIBMAycBGEA2yA3ssOgFzIgCuAtnlADTID0AVMgM4D2tKMwAuk7I2LZAF8AUKEixEKAHJw+2PIRIgVESpzBRQAc2btk3MAAtoyAUJFjJUsAE8ADku0B5KBgA8AFWQIAA9IEGEqOgZkAB8ufSMAPmQAXmRAkLCImnprAH40LFwCZEplVWL8AG4pFnF-C2ARBF4+cC4Lbmp8dCpzZDxSEAR8anQIdCla8QBaOYRqMDmZqRhqYbBgbhBkBCgIOEg1AgCg0IhwkRzouL0DEENEgAoyb3KddIBKMq8fdADkkQpMgQchLFBuAB3ZAAInWwFornwEDakHQMKk0ikyLAyDgqV2+0OEGO+CeMJc7k4e2ArjAMM+NTqIIAenkpjiBgS9gcjpUngAmAB0AA5GdNWezsRBcQhuUS+eongBZQ4WIVQODhXhPT7IAowqz4fDcGGlZAAFgF4uZyDZUiAA",
"tags": []
}
declarations.ts
// @declaration: true
// @showEmit
// @showEmittedFile: index.d.ts
/**
* Gets the length of a string
* @param value a string
*/
export function getStringLength(value: string) {
return value.length
}
Turns to:
/**
* Gets the length of a string
* @param value a string
*/
export declare function getStringLength(value: string): number
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 0 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEBMFMGMBsCGAnRAXAlgewHYC5Q1kBXaAKBAgGcALLAdwFEBbDNCscWhlttaSADEM8aAQw4YADwB0kGWipkKAKhVlQK0AHFoiwjWihROAOZoaoLADNQiUFSITTGreAAOKRM1AA3RPCkdg5OZq7AZNBS7ljIaKDWxDiwmLigpnoAyqGmADLQZhYAFP6BYiHIzgCUoADeGqDIesTIOH4BpDIm5jRkAL5kQA",
"tags": []
}
errorsWithGenerics.ts
// @errors: 2322
const a: Record<string, string> = {}
let b: Record<string, number> = {}
b = a
Turns to:
const a: Record<string, string> = {}
let b: Record<string, number> = {}
b = a
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 6 items ]",
"errors": [
{
"category": 1,
"code": 2322,
"length": 1,
"start": 72,
"line": 2,
"character": 0,
"renderedMessage": "Type 'Record<string, string>' is not assignable to type 'Record<string, number>'.\n 'string' index signatures are incompatible.\n Type 'string' is not assignable to type 'number'.",
"id": "err-2322-72-1"
}
],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEFMCdoe2gZwFygEwGY1oFAGM4A7RAF1AENUAlSA6AEwB5ToBLQgcwBpQX2OAfKAC8oAN4BfHABtIZAEbVaCJn049CAVwC28mENGSc8kRRxA",
"tags": []
}
highlighting.ts
function greet(person: string, date: Date) {
console.log(`Hello ${person}, today is ${date.toDateString()}!`)
}
greet("Maddison", new Date())
// ^^^^^^^^^^
Turns to:
function greet(person: string, date: Date) {
console.log(`Hello ${person}, today is ${date.toDateString()}!`)
}
greet("Maddison", new Date())
With:
{
"code": "See above",
"extension": "ts",
"highlights": [
{
"kind": "highlight",
"offset": 134,
"length": 10,
"text": "",
"line": 4,
"start": 18
}
],
"queries": [],
"staticQuickInfos": "[ 11 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/GYVwdgxgLglg9mABAcwE4FN1QBQAd2oDOCAXIoVKjGMgDSIAmAhlOmQCIvoCUiA3gChEiCAmIAbdADpxcZNgAGACXTjZiACR98RBAF96UOMwCeiGIU19mrKUc6sAypWrzuegIQLuAbgF6BATRMHAAiAFkmBgYLBFD6MHQAd0QHdGxuXwEAemzhfILC4QA9UrLygSA",
"tags": []
}
import_files.ts
// @filename: file-with-export.ts
export const helloWorld = "Example string"
// @filename: index.ts
import { helloWorld } from "./file-with-export"
console.log(helloWorld)
Turns to:
// @filename: file-with-export.ts
export const helloWorld = "Example string"
// @filename: index.ts
import { helloWorld } from "./file-with-export"
console.log(helloWorld)
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 5 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEDMEsBsFMB2BDAtvAXKGCC0B3aAFwAtd4APABwHsAnIgOiIGcAoS2h0AYxsRZFQJeLFg0A6vVgATUAF5QAIgCiFNFQShBdaIgDmSgNxs2ICDiRpMoPTMrN20VFyEBvEWMnSZAX2x0NKjKjMCWBMRknPRESmx8AjQIjOL6ABSe4lJ0sgCUbEA",
"tags": []
}
importsModules.ts
// @filename: Component.tsx
import React from "react"
export function Hello() {
return (
<div>
<h1>Hello World</h1>
</div>
)
}
// @filename: index.ts
import { Hello } from "./Component"
console.log(Hello)
Turns to:
// @filename: Component.tsx
import React from "react"
export function Hello() {
return (
<div>
<h1>Hello World</h1>
</div>
)
}
// @filename: index.ts
import { Hello } from "./Component"
console.log(Hello)
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 10 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEDMEsBsFMB2BDAtvAXKAwge1QA66JIAuAdKQM4AeAUNIbgE6mgBK8yAxm5M-lAAiZl15C6deDSKtQkAK6Je0YqAAS8WLFwAKAJSgA3nVChRpBc0Shdps6AA8AE2gA3AHz2HTgBYBGD01tXFAAdRZYZ0dgAK8fGNdPe306AF9JEAgYBBR0LGhEZ2lKKgYmOSMNLR1QNPkBVGFyYDwmEkRSCW5iKlwEch0Ac11gnVSgA",
"tags": []
}
multiFileErrors.ts
// @filename: sum.ts
export function sum(a: number, b: number): number {
return a + b
}
// @filename: ok.ts
import { sum } from "./sum"
sum(1, 2)
// @filename: error.ts
// @errors: 2345
import { sum } from "./sum"
sum(4, "woops")
Turns to:
// @filename: sum.ts
export function sum(a: number, b: number): number {
return a + b
}
// @filename: ok.ts
import { sum } from "./sum"
sum(1, 2)
// @filename: error.ts
import { sum } from "./sum"
sum(4, "woops")
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 9 items ]",
"errors": [
{
"category": 1,
"code": 2345,
"length": 7,
"start": 208,
"line": 11,
"character": 7,
"renderedMessage": "Argument of type 'string' is not assignable to parameter of type 'number'.",
"id": "err-2345-35-7"
}
],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEDMEsBsFMB2BDAtvAXKAzgV1QHQAu2AUPAB4AOA9gE5GiS6IDGR0NiO+AFMlkT4ARvDoAaUMMEixAShmpRdUAG9SoUHXhFcdbslABqKaQC+pUiAgwEKdFhoBrYmWipaDNT1SgzTOhpfACICYDxUYNII3gBGSQAmOUtrKDgkNExQMUC6VyswcBz6bCwEgGYAFgBWUndPRlUfPwCg0FDw-CiYyslggHcaGipsYOSgA",
"tags": []
}
query.ts
let foo = "hello there!"
// ^?
Turns to:
let foo = "hello there!"
With:
{
"code": "See above",
"extension": "ts",
"highlights": [],
"queries": [
{
"docs": "",
"kind": "query",
"start": 4,
"length": 15,
"text": "let foo: string",
"offset": 4,
"line": 1
}
],
"staticQuickInfos": "[ 1 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/DYUwLgBAZg9jEF4ICIAWJjHmdAnEAhMgNwBQA9ORBAHoD8pQA",
"tags": []
}
showEmit.ts
// @showEmit
// @target: ES5
// @downleveliteration
// --importHelpers on: Spread helper will be imported from 'tslib'
export function fn(arr: number[]) {
const arr2 = [1, ...arr]
}
Turns to:
// --importHelpers on: Spread helper will be imported from 'tslib'
var __read =
(this && this.__read) ||
function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator]
if (!m) return o
var i = m.call(o),
r,
ar = [],
e
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value)
} catch (error) {
e = { error: error }
} finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i)
} finally {
if (e) throw e.error
}
}
return ar
}
var __spreadArray =
(this && this.__spreadArray) ||
function (to, from, pack) {
if (pack || arguments.length === 2)
for (var i = 0, l = from.length, ar; i < l; i++) {
if (ar || !(i in from)) {
if (!ar) ar = Array.prototype.slice.call(from, 0, i)
ar[i] = from[i]
}
}
return to.concat(ar || Array.prototype.slice.call(from))
}
export function fn(arr) {
var arr2 = __spreadArray([1], __read(arr), false)
}
With:
{
"code": "See above",
"extension": "js",
"highlights": [],
"queries": [],
"staticQuickInfos": "[ 0 items ]",
"errors": [],
"playgroundURL": "https://www.typescriptlang.org/play/#code/PTAEAEGcAsHsHcCiBbAlgFwFAgughgE4DmApugFyiIDKArNmOACYIB2ANiQG4nsYkE86VLFaYGoALSTUyAA6wC6ABK85AyKFGVqcgiTxNQ0NQNDxU7dqABGJULIVKSRgGYFYyUAHJ0kPjbe4iQAHk7ooK4ArqwAxsKikawAFIQElKxRyHYEANoAugCUoADemKCgsaKQEWkATKAAvKC5AIwANKAAdD1p+ZgAvphAA",
"tags": []
}
The API is one main exported function:
/**
* Runs the checker against a TypeScript/JavaScript code sample returning potentially
* difference code, and a set of annotations around how it works.
*
* @param code The twoslash markup'd code
* @param extension For example: "ts", "tsx", "typescript", "javascript" or "js".
* @param options Additional options for twoslash
*/
export function twoslasher(code: string, extension: string, options: TwoSlashOptions = {}): TwoSlashReturn
Which takes the options:
export interface TwoSlashOptions {
/** Allows setting any of the handbook options from outside the function, useful if you don't want LSP identifiers */
defaultOptions?: Partial<ExampleOptions>
/** Allows setting any of the compiler options from outside the function */
defaultCompilerOptions?: CompilerOptions
/** Allows applying custom transformers to the emit result, only useful with the showEmit output */
customTransformers?: CustomTransformers
/** An optional copy of the TypeScript import, if missing it will be require'd. */
tsModule?: TS
/** Absolute path to the directory to look up built-in TypeScript .d.ts files. */
tsLibDirectory?: string
/** An optional copy of the lz-string import, if missing it will be require'd. */
lzstringModule?: LZ
/**
* An optional Map object which is passed into @typescript/vfs - if you are using twoslash on the
* web then you'll need this to set up your lib *.d.ts files. If missing, it will use your fs.
*/
fsMap?: Map<string, string>
/** The cwd for the folder which the virtual fs should be overlaid on top of when using local fs, opts to process.cwd() if not present */
vfsRoot?: string
/** A set of known `// @[tags]` tags to extract and not treat as a comment */
customTags?: string[]
}
And returns:
export interface TwoSlashReturn {
/** The output code, could be TypeScript, but could also be a JS/JSON/d.ts */
code: string
/** The new extension type for the code, potentially changed if they've requested emitted results */
extension: string
/** Requests to highlight a particular part of the code */
highlights: {
kind: "highlight"
/** The index of the text in the file */
start: number
/** What line is the highlighted identifier on? */
line: number
/** At what index in the line does the caret represent */
offset: number
/** The text of the token which is highlighted */
text?: string
/** The length of the token */
length: number
}[]
/** An array of LSP responses identifiers in the sample */
staticQuickInfos: {
/** The string content of the node this represents (mainly for debugging) */
targetString: string
/** The base LSP response (the type) */
text: string
/** Attached JSDoc info */
docs: string | undefined
/** The index of the text in the file */
start: number
/** how long the identifier */
length: number
/** line number where this is found */
line: number
/** The character on the line */
character: number
}[]
/** Requests to use the LSP to get info for a particular symbol in the source */
queries: {
kind: "query" | "completions"
/** What line is the highlighted identifier on? */
line: number
/** At what index in the line does the caret represent */
offset: number
/** The text of the token which is highlighted */
text?: string
/** Any attached JSDocs */
docs?: string | undefined
/** The token start which the query indicates */
start: number
/** The length of the token */
length: number
/** Results for completions at a particular point */
completions?: import("typescript").CompletionEntry[]
/* Completion prefix e.g. the letters before the cursor in the word so you can filter */
completionsPrefix?: string
}[]
/** The extracted twoslash commands for any custom tags passed in via customTags */
tags: {
/** What was the name of the tag */
name: string
/** Where was it located in the original source file */
line: number
/** What was the text after the `// @tag: ` string (optional because you could do // @tag on it's own line without the ':') */
annotation?: string
}[]
/** Diagnostic error messages which came up when creating the program */
errors: {
renderedMessage: string
id: string
category: 0 | 1 | 2 | 3
code: number
start: number | undefined
length: number | undefined
line: number | undefined
character: number | undefined
}[]
/** The URL for this sample in the playground */
playgroundURL: string
}
This package can be used as a commonjs import, an esmodule and directly via a script tag which edits the global namespace. All of these files are embedded inside the released packages.
Below is a list of commands you will probably find useful. You can get debug logs by running with the env var of DEBUG="*"
.
pnpm start
Runs the project in development/watch mode. Your project will be rebuilt upon changes. The library will be rebuilt if you make edits.
pnpm build
Bundles the package to the dist
folder. The package is optimized and bundled with Rollup into multiple formats (CommonJS, UMD, and ES Module).
pnpm test
Runs the test watcher (Jest) in an interactive mode. By default, runs tests related to files changed since the last commit.
FAQs
A markup format for TypeScript code, ideal for creating self-contained code samples which let the TypeScript compiler do the extra leg-work. Inspired by the [fourslash test system](https://github.com/orta/typescript-notes/blob/master/systems/testing/fours
The npm package @typescript/twoslash receives a total of 2,940 weekly downloads. As such, @typescript/twoslash popularity was classified as popular.
We found that @typescript/twoslash demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.