rolldown-string

A compatibility layer for magic-string to work with Rolldown and other bundlers.

MIT 6 个版本
安装
npm install rolldown-string
yarn add rolldown-string
pnpm add rolldown-string
bun add rolldown-string
README

rolldown-string

npm version npm downloads Unit Test

A compatibility layer for magic-string to work with Rolldown and other bundlers.

  • In Rolldown, native magic-string is used to optimize performance.
  • If native support is unavailable, it gracefully falls back to the JavaScript implementation of magic-string.

Recommended for use with unplugin.

Install

npm i rolldown-string

Usage

withMagicString

Higher-order function to create a transform hook with magic-string support.

import { withMagicString } from 'rolldown-string'

const plugin = {
  transform: withMagicString((s, id) => {
    // your transformations...
    s.replace('42', '43')
  }),
}

rolldownString / generateTransform

More flexible way to use rolldown-string.

import { generateTransform, rolldownString } from 'rolldown-string'

const yourPlugin = {
  transform(code, id, meta) {
    const s = rolldownString(code, id, meta)

    // your transformations...
    s.replace('42', '43')

    return generateTransform(s, id)
  },
}

Sponsors

License

MIT License © 2025-PRESENT Kevin Deng

版本列表
0.3.1 2026-07-16
0.3.0 2026-03-11
0.2.1 2025-12-15
0.2.0 2025-12-15
0.1.0 2025-12-15
0.0.0 2025-12-15