Skip to content

Latest commit

 

History

History
 
 

swc-plugin-htm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

SWC Plugin HTM • A swc plugin for htm literals transpiling. Highly inspired by its babel counterpart babel-plugin-htm.

NPM

Install

$ npm i @chialab/swc-plugin-html -D
$ yarn add @chialab/swc-plugin-html -D

Usage

import swc from '@swc/core';
import { plugin as htmPlugin } from '@chialab/swc-plugin-htm';

swc
    .transform("source code", {
        plugin: htmPlugin({ tag: 'html', pragma: 'h' }),
    })
    .then((output) => {
        output.code; // transformed code
        output.map; // source map (in string)
    });

License

SWC Plugin HTM is released under the MIT license.