🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
49
node_modules/trough/index.d.ts
generated
vendored
Normal file
49
node_modules/trough/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/**
|
||||
* @typedef {(error?: Error|null|undefined, ...output: Array<any>) => void} Callback
|
||||
* @typedef {(...input: Array<any>) => any} Middleware
|
||||
*
|
||||
* @typedef {(...input: Array<any>) => void} Run
|
||||
* Call all middleware.
|
||||
* @typedef {(fn: Middleware) => Pipeline} Use
|
||||
* Add `fn` (middleware) to the list.
|
||||
* @typedef {{run: Run, use: Use}} Pipeline
|
||||
* Middleware.
|
||||
*/
|
||||
/**
|
||||
* Create new middleware.
|
||||
*
|
||||
* @returns {Pipeline}
|
||||
*/
|
||||
export function trough(): Pipeline
|
||||
/**
|
||||
* Wrap `middleware`.
|
||||
* Can be sync or async; return a promise, receive a callback, or return new
|
||||
* values and errors.
|
||||
*
|
||||
* @param {Middleware} middleware
|
||||
* @param {Callback} callback
|
||||
*/
|
||||
export function wrap(
|
||||
middleware: Middleware,
|
||||
callback: Callback
|
||||
): (...parameters: Array<any>) => void
|
||||
export type Callback = (
|
||||
error?: Error | null | undefined,
|
||||
...output: Array<any>
|
||||
) => void
|
||||
export type Middleware = (...input: Array<any>) => any
|
||||
/**
|
||||
* Call all middleware.
|
||||
*/
|
||||
export type Run = (...input: Array<any>) => void
|
||||
/**
|
||||
* Add `fn` (middleware) to the list.
|
||||
*/
|
||||
export type Use = (fn: Middleware) => Pipeline
|
||||
/**
|
||||
* Middleware.
|
||||
*/
|
||||
export type Pipeline = {
|
||||
run: Run
|
||||
use: Use
|
||||
}
|
||||
160
node_modules/trough/index.js
generated
vendored
Normal file
160
node_modules/trough/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
/**
|
||||
* @typedef {(error?: Error|null|undefined, ...output: Array<any>) => void} Callback
|
||||
* @typedef {(...input: Array<any>) => any} Middleware
|
||||
*
|
||||
* @typedef {(...input: Array<any>) => void} Run
|
||||
* Call all middleware.
|
||||
* @typedef {(fn: Middleware) => Pipeline} Use
|
||||
* Add `fn` (middleware) to the list.
|
||||
* @typedef {{run: Run, use: Use}} Pipeline
|
||||
* Middleware.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Create new middleware.
|
||||
*
|
||||
* @returns {Pipeline}
|
||||
*/
|
||||
export function trough() {
|
||||
/** @type {Array<Middleware>} */
|
||||
const fns = []
|
||||
/** @type {Pipeline} */
|
||||
const pipeline = {run, use}
|
||||
|
||||
return pipeline
|
||||
|
||||
/** @type {Run} */
|
||||
function run(...values) {
|
||||
let middlewareIndex = -1
|
||||
/** @type {Callback} */
|
||||
const callback = values.pop()
|
||||
|
||||
if (typeof callback !== 'function') {
|
||||
throw new TypeError('Expected function as last argument, not ' + callback)
|
||||
}
|
||||
|
||||
next(null, ...values)
|
||||
|
||||
/**
|
||||
* Run the next `fn`, or we’re done.
|
||||
*
|
||||
* @param {Error|null|undefined} error
|
||||
* @param {Array<any>} output
|
||||
*/
|
||||
function next(error, ...output) {
|
||||
const fn = fns[++middlewareIndex]
|
||||
let index = -1
|
||||
|
||||
if (error) {
|
||||
callback(error)
|
||||
return
|
||||
}
|
||||
|
||||
// Copy non-nullish input into values.
|
||||
while (++index < values.length) {
|
||||
if (output[index] === null || output[index] === undefined) {
|
||||
output[index] = values[index]
|
||||
}
|
||||
}
|
||||
|
||||
// Save the newly created `output` for the next call.
|
||||
values = output
|
||||
|
||||
// Next or done.
|
||||
if (fn) {
|
||||
wrap(fn, next)(...output)
|
||||
} else {
|
||||
callback(null, ...output)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** @type {Use} */
|
||||
function use(middelware) {
|
||||
if (typeof middelware !== 'function') {
|
||||
throw new TypeError(
|
||||
'Expected `middelware` to be a function, not ' + middelware
|
||||
)
|
||||
}
|
||||
|
||||
fns.push(middelware)
|
||||
return pipeline
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Wrap `middleware`.
|
||||
* Can be sync or async; return a promise, receive a callback, or return new
|
||||
* values and errors.
|
||||
*
|
||||
* @param {Middleware} middleware
|
||||
* @param {Callback} callback
|
||||
*/
|
||||
export function wrap(middleware, callback) {
|
||||
/** @type {boolean} */
|
||||
let called
|
||||
|
||||
return wrapped
|
||||
|
||||
/**
|
||||
* Call `middleware`.
|
||||
* @this {any}
|
||||
* @param {Array<any>} parameters
|
||||
* @returns {void}
|
||||
*/
|
||||
function wrapped(...parameters) {
|
||||
const fnExpectsCallback = middleware.length > parameters.length
|
||||
/** @type {any} */
|
||||
let result
|
||||
|
||||
if (fnExpectsCallback) {
|
||||
parameters.push(done)
|
||||
}
|
||||
|
||||
try {
|
||||
result = middleware.apply(this, parameters)
|
||||
} catch (error) {
|
||||
const exception = /** @type {Error} */ (error)
|
||||
|
||||
// Well, this is quite the pickle.
|
||||
// `middleware` received a callback and called it synchronously, but that
|
||||
// threw an error.
|
||||
// The only thing left to do is to throw the thing instead.
|
||||
if (fnExpectsCallback && called) {
|
||||
throw exception
|
||||
}
|
||||
|
||||
return done(exception)
|
||||
}
|
||||
|
||||
if (!fnExpectsCallback) {
|
||||
if (result instanceof Promise) {
|
||||
result.then(then, done)
|
||||
} else if (result instanceof Error) {
|
||||
done(result)
|
||||
} else {
|
||||
then(result)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Call `callback`, only once.
|
||||
* @type {Callback}
|
||||
*/
|
||||
function done(error, ...output) {
|
||||
if (!called) {
|
||||
called = true
|
||||
callback(error, ...output)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Call `done` with one value.
|
||||
*
|
||||
* @param {any} [value]
|
||||
*/
|
||||
function then(value) {
|
||||
done(null, value)
|
||||
}
|
||||
}
|
||||
21
node_modules/trough/license
generated
vendored
Normal file
21
node_modules/trough/license
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
(The MIT License)
|
||||
|
||||
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
78
node_modules/trough/package.json
generated
vendored
Normal file
78
node_modules/trough/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"name": "trough",
|
||||
"version": "2.1.0",
|
||||
"description": "Middleware: a channel used to convey a liquid",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"middleware",
|
||||
"ware"
|
||||
],
|
||||
"repository": "wooorm/trough",
|
||||
"bugs": "https://github.com/wooorm/trough/issues",
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/wooorm"
|
||||
},
|
||||
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||||
"contributors": [
|
||||
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"index.js"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@types/tape": "^4.0.0",
|
||||
"c8": "^7.0.0",
|
||||
"prettier": "^2.0.0",
|
||||
"remark-cli": "^10.0.0",
|
||||
"remark-preset-wooorm": "^9.0.0",
|
||||
"rimraf": "^3.0.0",
|
||||
"tape": "^5.0.0",
|
||||
"type-coverage": "^2.0.0",
|
||||
"typescript": "^4.0.0",
|
||||
"xo": "^0.48.0"
|
||||
},
|
||||
"scripts": {
|
||||
"prepack": "npm run build && npm run format",
|
||||
"build": "rimraf \"*.d.ts\" && tsc && type-coverage",
|
||||
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
|
||||
"test-api": "node test.js",
|
||||
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js",
|
||||
"test": "npm run build && npm run format && npm run test-coverage"
|
||||
},
|
||||
"prettier": {
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"singleQuote": true,
|
||||
"bracketSpacing": false,
|
||||
"semi": false,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"xo": {
|
||||
"prettier": true,
|
||||
"rules": {
|
||||
"capitalized-comments": "off"
|
||||
}
|
||||
},
|
||||
"remarkConfig": {
|
||||
"plugins": [
|
||||
"preset-wooorm"
|
||||
]
|
||||
},
|
||||
"typeCoverage": {
|
||||
"atLeast": 100,
|
||||
"detail": true,
|
||||
"strict": true,
|
||||
"ignoreCatch": true,
|
||||
"#": "some nessecary `any`s",
|
||||
"ignoreFiles": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
]
|
||||
}
|
||||
}
|
||||
400
node_modules/trough/readme.md
generated
vendored
Normal file
400
node_modules/trough/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,400 @@
|
|||
# trough
|
||||
|
||||
[![Build][build-badge]][build]
|
||||
[![Coverage][coverage-badge]][coverage]
|
||||
[![Downloads][downloads-badge]][downloads]
|
||||
[![Size][size-badge]][size]
|
||||
|
||||
`trough` is middleware.
|
||||
|
||||
## Contents
|
||||
|
||||
* [What is this?](#what-is-this)
|
||||
* [When should I use this?](#when-should-i-use-this)
|
||||
* [Install](#install)
|
||||
* [Use](#use)
|
||||
* [API](#api)
|
||||
* [`trough()`](#trough-1)
|
||||
* [`wrap(middleware, callback)(…input)`](#wrapmiddleware-callbackinput)
|
||||
* [`Trough`](#trough-2)
|
||||
* [Types](#types)
|
||||
* [Compatibility](#compatibility)
|
||||
* [Security](#security)
|
||||
* [Contribute](#contribute)
|
||||
* [License](#license)
|
||||
|
||||
## What is this?
|
||||
|
||||
`trough` is like [`ware`][ware] with less sugar.
|
||||
Middleware functions can also change the input of the next.
|
||||
|
||||
The word **trough** (`/trôf/`) means a channel used to convey a liquid.
|
||||
|
||||
## When should I use this?
|
||||
|
||||
You can use this package when you’re building something that accepts “plugins”,
|
||||
which are functions, that can be sync or async, promises or callbacks.
|
||||
|
||||
## Install
|
||||
|
||||
This package is [ESM only][esm].
|
||||
In Node.js (version 12.20+, 14.14+, or 16.0+), install with [npm][]:
|
||||
|
||||
```sh
|
||||
npm install trough
|
||||
```
|
||||
|
||||
In Deno with [`esm.sh`][esmsh]:
|
||||
|
||||
```js
|
||||
import {trough} from "https://esm.sh/trough@2"
|
||||
```
|
||||
|
||||
In browsers with [`esm.sh`][esmsh]:
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import {trough} from "https://esm.sh/trough@2?bundle"
|
||||
</script>
|
||||
```
|
||||
|
||||
## Use
|
||||
|
||||
```js
|
||||
import process from 'node:process'
|
||||
import fs from 'node:fs'
|
||||
import path from 'node:path'
|
||||
import {trough} from 'trough'
|
||||
|
||||
const pipeline = trough()
|
||||
.use(function (fileName) {
|
||||
console.log('Checking… ' + fileName)
|
||||
})
|
||||
.use(function (fileName) {
|
||||
return path.join(process.cwd(), fileName)
|
||||
})
|
||||
.use(function (filePath, next) {
|
||||
fs.stat(filePath, function (error, stats) {
|
||||
next(error, {filePath, stats})
|
||||
})
|
||||
})
|
||||
.use(function (ctx, next) {
|
||||
if (ctx.stats.isFile()) {
|
||||
fs.readFile(ctx.filePath, next)
|
||||
} else {
|
||||
next(new Error('Expected file'))
|
||||
}
|
||||
})
|
||||
|
||||
pipeline.run('readme.md', console.log)
|
||||
pipeline.run('node_modules', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
Checking… readme.md
|
||||
Checking… node_modules
|
||||
Error: Expected file
|
||||
at ~/example.js:22:12
|
||||
at wrapped (~/node_modules/trough/index.js:111:16)
|
||||
at next (~/node_modules/trough/index.js:62:23)
|
||||
at done (~/node_modules/trough/index.js:145:7)
|
||||
at ~/example.js:15:7
|
||||
at FSReqCallback.oncomplete (node:fs:199:5)
|
||||
null <Buffer 23 20 74 72 6f 75 67 68 0a 0a 5b 21 5b 42 75 69 6c 64 5d 5b 62 75 69 6c 64 2d 62 61 64 67 65 5d 5d 5b 62 75 69 6c 64 5d 0a 5b 21 5b 43 6f 76 65 72 61 ... 7994 more bytes>
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
This package exports the identifiers `trough` and `wrap`.
|
||||
There is no default export.
|
||||
|
||||
### `trough()`
|
||||
|
||||
Create a new [`Trough`][trough].
|
||||
|
||||
### `wrap(middleware, callback)(…input)`
|
||||
|
||||
Call `middleware` with all input.
|
||||
If `middleware` accepts more arguments than given in input, an extra `done`
|
||||
function is passed in after the input when calling it.
|
||||
In that case, `done` must be called.
|
||||
|
||||
The first value in `input` is the main input value.
|
||||
All other input values are the rest input values.
|
||||
The values given to `callback` are the input values, merged with every
|
||||
non-nullish output value.
|
||||
|
||||
* If `middleware` throws an error, returns a promise that is rejected, or
|
||||
calls the given `done` function with an error, `callback` is called with
|
||||
that error
|
||||
* If `middleware` returns a value or returns a promise that is resolved, that
|
||||
value is the main output value
|
||||
* If `middleware` calls `done`, all non-nullish values except for the first
|
||||
one (the error) overwrite the output values
|
||||
|
||||
### `Trough`
|
||||
|
||||
A pipeline.
|
||||
|
||||
#### `Trough#run([input…, ]done)`
|
||||
|
||||
Run the pipeline (all [`use()`][use]d middleware).
|
||||
Calls [`done`][done] on completion with either an error or the output of the
|
||||
last middleware.
|
||||
|
||||
> 👉 **Note**: as the length of input defines whether [async][] functions get a
|
||||
> `next` function, it’s recommended to keep `input` at one value normally.
|
||||
|
||||
##### `function done(err?, [output…])`
|
||||
|
||||
The final handler passed to [`run()`][run], called with an error if a
|
||||
[middleware function][fn] rejected, passed, or threw one, or the output of the
|
||||
last middleware function.
|
||||
|
||||
#### `Trough#use(fn)`
|
||||
|
||||
Add `fn`, a [middleware function][fn], to the pipeline.
|
||||
|
||||
##### `function fn([input…, ][next])`
|
||||
|
||||
A middleware function called with the output of its predecessor.
|
||||
|
||||
###### Synchronous
|
||||
|
||||
If `fn` returns or throws an error, the pipeline fails and `done` is called
|
||||
with that error.
|
||||
|
||||
If `fn` returns a value (neither `null` nor `undefined`), the first `input` of
|
||||
the next function is set to that value (all other `input` is passed through).
|
||||
|
||||
The following example shows how returning an error stops the pipeline:
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing) {
|
||||
return new Error('Got: ' + thing)
|
||||
})
|
||||
.run('some value', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
Error: Got: some value
|
||||
at ~/example.js:5:12
|
||||
…
|
||||
```
|
||||
|
||||
The following example shows how throwing an error stops the pipeline:
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing) {
|
||||
throw new Error('Got: ' + thing)
|
||||
})
|
||||
.run('more value', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
Error: Got: more value
|
||||
at ~/example.js:5:11
|
||||
…
|
||||
```
|
||||
|
||||
The following example shows how the first output can be modified:
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing) {
|
||||
return 'even ' + thing
|
||||
})
|
||||
.run('more value', 'untouched', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
null 'even more value' 'untouched'
|
||||
```
|
||||
|
||||
###### Promise
|
||||
|
||||
If `fn` returns a promise, and that promise rejects, the pipeline fails and
|
||||
`done` is called with the rejected value.
|
||||
|
||||
If `fn` returns a promise, and that promise resolves with a value (neither
|
||||
`null` nor `undefined`), the first `input` of the next function is set to that
|
||||
value (all other `input` is passed through).
|
||||
|
||||
The following example shows how rejecting a promise stops the pipeline:
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
reject('Got: ' + thing)
|
||||
})
|
||||
})
|
||||
.run('thing', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
Got: thing
|
||||
```
|
||||
|
||||
The following example shows how the input isn’t touched by resolving to `null`.
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function () {
|
||||
return new Promise(function (resolve) {
|
||||
setTimeout(function () {
|
||||
resolve(null)
|
||||
}, 100)
|
||||
})
|
||||
})
|
||||
.run('Input', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
null 'Input'
|
||||
```
|
||||
|
||||
###### Asynchronous
|
||||
|
||||
If `fn` accepts one more argument than the given `input`, a `next` function is
|
||||
given (after the input). `next` must be called, but doesn’t have to be called
|
||||
async.
|
||||
|
||||
If `next` is given a value (neither `null` nor `undefined`) as its first
|
||||
argument, the pipeline fails and `done` is called with that value.
|
||||
|
||||
If `next` is given no value (either `null` or `undefined`) as the first
|
||||
argument, all following non-nullish values change the input of the following
|
||||
function, and all nullish values default to the `input`.
|
||||
|
||||
The following example shows how passing a first argument stops the pipeline:
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing, next) {
|
||||
next(new Error('Got: ' + thing))
|
||||
})
|
||||
.run('thing', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
Error: Got: thing
|
||||
at ~/example.js:5:10
|
||||
```
|
||||
|
||||
The following example shows how more values than the input are passed.
|
||||
|
||||
```js
|
||||
import {trough} from 'trough'
|
||||
|
||||
trough()
|
||||
.use(function (thing, next) {
|
||||
setTimeout(function () {
|
||||
next(null, null, 'values')
|
||||
}, 100)
|
||||
})
|
||||
.run('some', console.log)
|
||||
```
|
||||
|
||||
Yields:
|
||||
|
||||
```txt
|
||||
null 'some' 'values'
|
||||
```
|
||||
|
||||
## Types
|
||||
|
||||
This package is fully typed with [TypeScript][].
|
||||
|
||||
## Compatibility
|
||||
|
||||
This package is at least compatible with all maintained versions of Node.js.
|
||||
As of now, that is Node.js 12.20+, 14.14+, and 16.0+.
|
||||
It also works in Deno and modern browsers.
|
||||
|
||||
## Security
|
||||
|
||||
This package is safe.
|
||||
|
||||
## Contribute
|
||||
|
||||
Yes please!
|
||||
See [How to Contribute to Open Source][contribute].
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://github.com/wooorm/trough/workflows/main/badge.svg
|
||||
|
||||
[build]: https://github.com/wooorm/trough/actions
|
||||
|
||||
[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/trough.svg
|
||||
|
||||
[coverage]: https://codecov.io/github/wooorm/trough
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/trough.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/trough
|
||||
|
||||
[size-badge]: https://img.shields.io/bundlephobia/minzip/trough.svg
|
||||
|
||||
[size]: https://bundlephobia.com/result?p=trough
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[license]: license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
|
||||
|
||||
[esmsh]: https://esm.sh
|
||||
|
||||
[typescript]: https://www.typescriptlang.org
|
||||
|
||||
[contribute]: https://opensource.guide/how-to-contribute/
|
||||
|
||||
[ware]: https://github.com/segmentio/ware
|
||||
|
||||
[trough]: #trough-1
|
||||
|
||||
[use]: #troughusefn
|
||||
|
||||
[run]: #troughruninput-done
|
||||
|
||||
[fn]: #function-fninput-next
|
||||
|
||||
[done]: #function-doneerr-output
|
||||
|
||||
[async]: #asynchronous
|
||||
Loading…
Add table
Add a link
Reference in a new issue