npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rollup-use/core

v1.1.0

Published

A pure-js npm library bundle tool use rollup. 此工具使用 rollup, 可以打包纯 js 的 npm 库项目.

Downloads

19

Readme

@rollup-use/core

A pure-js npm library bundle tool use rollup. Clone js-starter to quick start.

此工具使用 rollup, 可以打包纯 js 的 npm 库项目. 中文文档. 可以复制 js-starter 以快速开始.

Examples/用例列表

You can add your public repo here. 欢迎添加你的项目到这里.

Usage

Install dependencies

npm install @rollup-use/core typescript --save-dev
npm install @babel/runtime -save

Copy directory scripts into your project. Add 2 npm scripts to scripts of package.json like follow:

"scripts": {
  "build-lib": "rollup -c scripts/build.js & node scripts/build.js --report",
  "watch-lib": "rollup -c scripts/build.js --watch"
}

Check scripts/build.ts and change it for your requirement. In most case, you may only need to change input. Once scripts/build.ts changed, execute npm run compile-build-lib to generate scripts/build.js. Then execute npm run build-lib to generate the final results.

Exclude core-js

Don't include core-js in your package.json, including dependencies and devDependencies. Or there will be core-js imports in your bundled results.

中文文档

使用

安装依赖

npm install @rollup-use/core typescript --save-dev
npm install @babel/runtime -save

复制目录 scripts 到你的项目. 参照如下, 添加 3 条 npm script 到package.jsonscripts:

"scripts": {
  "build-lib": "rollup -c scripts/build.js & node scripts/build.js --report",
  "watch-lib": "rollup -c scripts/build.js --watch"
}

按你的需求修改scripts/build.ts. 多数情况下你可能只需要修改input变量. 一旦scripts/build.ts有改动, 执行 npm run compile-build-lib 以生成 scripts/build.js. 再执行 npm run build-lib 即可生成最终结果.

排除 core-js

不要在 package.json 中包含 core-js, 包括 dependenciesdevDependencies. 否则打包结果中会有 core-js 导入.