Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakecyr/simply-jsx
A simple JSX transpiler without React with browser auto-reloading
https://github.com/jakecyr/simply-jsx
javascript jsx react
Last synced: about 2 months ago
JSON representation
A simple JSX transpiler without React with browser auto-reloading
- Host: GitHub
- URL: https://github.com/jakecyr/simply-jsx
- Owner: jakecyr
- Created: 2022-05-17T02:25:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-10T14:06:11.000Z (almost 2 years ago)
- Last Synced: 2024-11-12T02:39:20.325Z (about 2 months ago)
- Topics: javascript, jsx, react
- Language: JavaScript
- Homepage:
- Size: 772 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simply JSX
A simple transpiler for JSX without React. Features include:
- Transpile JSX to JS
- Auto-reload browser on file change
- More coming soon!## Installation
1. With npm, run `npm install simply-jsx`
2. Create a simply.json file in your root project folder (adjacent to your package.json)
3. Add the following to your simply.json file (changing the values as needed):```json
{
"source": "src",
"build": "dist",
"staticFiles": "public"
}
```
4. Create an index.html file in your staticFiles folder (folder specified in simply.json)
5. Add a script to your package.json file:```json
"scripts": {
"start": "simply-jsx",
}
```6. Run `npm start`