unreact-ejs
v1.1.5
Published
Convert React Components to EJS or Pug
Readme
Node.js v8 or newer is required.
Via the yarn client:
$ yarn add --dev unreactVia the npm client:
$ npm install --save-dev unreactConvert Files (--out-file/-o)
unreact src/button.js --out-file views/button.pugConvert Directories (--out-dir/-O)
unreact src --out-dir viewsTemplate Engine (--template-engine/-t)
Default option is pug, you can also choose ejs.
unreact src/button.js --out-file views/button.ejs --template-engine ejs
unreact src --out-dir views -t ejsAdd string to the beginning of the output file (--add-beginning)
unreact src/main.js --out-file views/main.pug --add-beginning "include header.pug"Add string to the ending of the output file (--add-ending)
unreact src/main.js --out-file views/main.pug --add-ending "include footer.pug"Change initial indent level (--initial-indent-level)
unreact src/main.js --out-file views/main.pug --initial-indent-level 1ALPHA: things may not work
- Only works with functional components and very simple ones.
Check the work bridging React and Prepack:
- https://github.com/facebook/prepack/pulls?utf8=%E2%9C%93&q=is%3Apr+react
- https://twitter.com/trueadm/status/1002812303824314369
- https://github.com/trueadm/ssr-with-prepack-hackathon
