Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rehype-recma

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rehype-recma

recma plugin to transform HTML (hast) to JS (estree)

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
258K
increased by16.54%
Maintainers
0
Weekly downloads
 
Created
Source

rehype-recma

Build Coverage Downloads Size Sponsors Backers Chat

rehype plugin to transform HTML to JS.

Contents

What is this?

This package is a unified (rehype) plugin that can turn HTML into JavaScript.

When should I use this?

Use this when you want to integrate static HTML into some JavaScript application.

If you don’t use plugins and access syntax trees manually, you can directly use hast-util-to-estree, which is used inside this plugin.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install rehype-recma

In Deno with esm.sh:

import rehypeRecma from 'https://esm.sh/rehype-recma@1'

In browsers with esm.sh:

<script type="module">
  import rehypeRecma from 'https://esm.sh/rehype-recma@1?bundle'
</script>

Use

Say we have the following module example.js:

import recmaJsx from 'recma-jsx'
import recmaStringify from 'recma-stringify'
import rehypeParse from 'rehype-parse'
import rehypeRecma from 'rehype-recma'
import {unified} from 'unified'

const file = await unified()
  .use(rehypeParse, {fragment: true})
  .use(rehypeRecma)
  .use(recmaJsx)
  .use(recmaStringify)
  .process('<p>Hi!<h1>Hello!')

console.log(String(file))

…running that with node example.js yields:

<><p>{"Hi!"}</p><h1>{"Hello!"}</h1></>;

API

This package exports no identifiers. The default export is rehypeRecma.

unified().use(rehypeRecma[, options])

Plugin to transform HTML (hast) to JS (estree).

Parameters
  • options (Options, optional) — configuration
Returns

Transform (Transformer).

Options

Configuration (TypeScript type).

Same as Options from hast-util-to-estree.

Types

This package is fully typed with TypeScript. It exports the additional type Options.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, rehype-recma@1, compatible with Node.js 16.

Security

As recma works on JS and evaluating JS is unsafe, use of recma can also be unsafe. Do not evaluate unsafe code.

Contribute

See § Contribute on our site for ways to get started. See § Support for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 18 Oct 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc