
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A Typescript Wrapper for React.CreateElement(), that makes writing react components more like html. Essentially React+Typescript (NO JSX)
React-TSX is a typescript library that makes writing compiled react code using Typescript simple and look very close to html, if it were functional programming.
The reason react-tsx was created is that Typescript does not always play well with jsx, and at the time I started learning React it was almost impossible to use both. I personally do not like the look, feel, syntax, and the extra build step that is required to use jsx.
You need to manually add the following to your files section of your tsconfig.json
"files":[
"path-to-src/entry-file.tsx",
"path-to-src/all-other-src-files.tsx",
"node_modules/react-tsx/js/index.d.ts",
"node_modules/react-tsx/js/src/react-tsx.d.ts",
"node_modules/react-tsx/ts/typings/globals/react-tap-event-plugin/index.d.ts",
"node_modules/react-tsx/ts/typings/globals/react/index.d.ts",
"node_modules/react-tsx/ts/typings/index.d.ts",
"node_modules/react-tsx/ts/typings/modules/react-dom/index.d.ts",
"node_modules/react-tsx/ts/typings/modules/react-router/index.d.ts"
]
If you are taking advantage of your IDE all you need is a properly configured tsconfig.json
"your-ide": {
"rewriteTsconfig": true
}
The required compiler options you can use es5 or es6, it's your choice!
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"isolatedModules": false,
"moduleResolution": "node",
"jsx": "react"
}
The last line in the fileGlobs is what picks up react.d.ts, react-dom.d.ts, react-router.d.ts, and react-tap-event-plugin.d.ts. This is so you do not have to deal with the definition files and can use import React = require("react") etc. anywhere.
"filesGlob": [
"<insert path to source dir/>/**/*.ts",
"<insert path to source dir/>/**/*.tsx",
"<insert path to node_modules/>/react-tsx/**/*.d.ts"
],
Please note that I did not fill out files:[], my IDE did!
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"isolatedModules": false,
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"sourceMap": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"src/**/*.ts",
"src/**/*.tsx",
"node_modules/react-tsx/**/*.d.ts"
],
"compileOnSave": true,
"buildOnSave": false,
"files": [
"src/index.tsx",
"node_modules/react-tsx/js/index.d.ts",
"node_modules/react-tsx/js/src/react-tsx.d.ts",
"node_modules/react-tsx/ts/typings/globals/react-tap-event-plugin/index.d.ts",
"node_modules/react-tsx/ts/typings/globals/react/index.d.ts",
"node_modules/react-tsx/ts/typings/index.d.ts",
"node_modules/react-tsx/ts/typings/modules/react-dom/index.d.ts",
"node_modules/react-tsx/ts/typings/modules/react-router/index.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}
You will need to use a commonjs bundler, this is agnostic so pick your poison.
For a full example please see my example using react-toolbox(http://react-toolbox.com/#/) and webpack (https://github.com/Thecavepeanut/react-tsx-basic-example)
import {Props, Component, el, ul, li, div, table, thead, th, tbody, tr, td} from "react-tsx";
interface MyComponentProps extends Props {
}
interface MyComponentState {
}
class MyComponent extends Component<MyComponentProps, MyComponentState>{
render() {
return div({ className: "my-component-wrapper" },
ul({},
li({}, "1"),
li({}, "2"),
li({ onClick: () => { alert("you clicked 3") } }, "3")
),
table({ className: "my-component-table" },
thead({},
tr({},
th({}, "header 1"),
th({}, "header 2"),
th({}, "header 3")
)
),
tbody({},
tr({},
td({}, "cell 1-1"),
td({}, "cell 1-2"),
td({}, "cell 1-3")
),
tr({},
td({}, "cell 2-1"),
td({}, "cell 2-2"),
td({}, "cell 2-3")
)
)
)
)
}
}
The compiled jsx will compile down to React.createElement thus you need to import React at the top of your files!
import React = require("react");
Example Source ex.tsx:
<div class="my-awesome-div"></div>
Now compiled ex.js:
React.createElement("div", {className:"my-awesome-div"})
FAQs
A Typescript Wrapper for React.CreateElement(), that makes writing react components more like html. Essentially React+Typescript (NO JSX)
We found that react-tsx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.