Browse by type
This is a syntax transform which transforms ES6 JSX-Tagged Template Strings to JS. For example:
var element = jsx`
Hello, ${name}!
`;
is being transformed into:
var element = React.createElement('p',
'Hello, ', name
);
% npm install es6-template-strings-jsx
Webpack loader is included as es6-template-strings-jsx/loader.
$ claude mcp add es6-template-strings-jsx \
-- python -m otcore.mcp_server <graph>