Skip to content

ephf/just-jsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Just JSX

compile JSX on the go.

Import

<script src="https://unpkg.com/just-jsx"></script>

Use

Create a <script> tag and add an empty jsx attribute to it and it will compile automatically.

<script jsx>
  document.body.append(
    <h1>Hello World</h1>
  )
</script>

Compiler

The compiler is optional, you can use it by installing the package globally.

npm install just-jsx -g

The compiler will compile .js .jsx .ts and .tsx files as-is and will replace script tags with the jsx attribute in .html files with compiled code

Run the command jsxc to compile a directory or a file into out/

jsxc [filename/dirname] [-o outputDirname:out]

compile a single file

jsxc file.js

compile all files in a directory

jsxc src

specify a custom output directory

jsxc src -o build

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published