Skip to content

antfu/pkg-exports

Repository files navigation

pkg-exports

NPM version

Get exports of an local npm package.

Install

npm i pkg-exports

Usage

getExportsRuntime

Get the exports by evaluate the module in worker thread.

import { getExportsRuntime } from 'pkg-exports'

const exports = await getExportsRuntime('vue')
console.log(exports) // ['ref', 'computed', ...]

getExportsStatic

Get the exports by static analysis (only work with ESM). Experimental.

import { getExportsStatic } from 'pkg-exports'

const exports = await getExportsStatic('vue')
console.log(exports) // ['ref', 'computed', ...]

Sponsors

License

MIT License © 2022 Anthony Fu