jsx-alone-string
v0.0.4
Published
Write JSX without React or any other library, both in browser and server. This is the string implementation (server and browser)
Maintainers
Readme
JSX Alone DOM implementation
npm install jsx-alone-domimport { JSXAlone, ElementClass } from 'jsx-alone-html'
import { writeFileSync } from 'fs'
// example function element
const TaskPageLink = props =>
<a href={`pages/tasks/${props.task}_small.html`}>{props.children}</a>
// example class element that uses previous TaskPageLink element
class App extends ElementClass {
render() {
return (
<article>
<h3>Welcome {this.props.name}!</h3>
<p>These are your tasks:</p>
<ul>
{this.props.tasks.map(task => (
<li>
<TaskPageLink task={task}>{task}</TaskPageLink>
</li>
))}
</ul>
</article>
)
}
}
// render the App and append the generated element to body
const tasks = ['Wash dishes', 'Go outside', 'Play soccer']
const app = <App name="John Doe" tasks={tasks} />
const output = JSXAlone.render(app)
writeFileSync(`output.html`, output)