Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
jsx2posthtml
Advanced tools
Render JSX/Hyperscript to PostHTML AST.
Can be used to inject elements to PostHTML AST with ability to use any plugin
to modify parsed JSX, or to produce HTML string, using only posthtml-render
.
Supports functional components and dangerouslySetInnerHTML
.
Examples of working with JSX with some ideas and code parts were taken from
packages preact
and vhtml
by developit.
For bundlers and other NPM-based environments:
npm install --save-dev jsx2posthtml
Types for TypeScript are included.
Package tslib
is in optional dependencies because it is required only for
ES5 code with ES2015 module systems version (and for development) to use
__assign
helper function, and did not required for other versions (in UMD
version this function bundled, in ES2015 it’s not required at all).
By default this package provides ES2015 version with CommonJS module system.
To use it, you can:
import h from 'jsx2posthtml';
//or
const h = require( 'jsx2posthtml' ).default;
It uses default export, so don’t forget to add .default
, if you want to
use require
.
You can manually use ES5 version with UMD package if you want to use package in a browser, or your Node version is outdated.
import * as h from 'jsx2posthtml/es5';
//or
const h = require( 'jsx2posthtml/es5' );
This version did not use default export, so you should write * as h
in
ESM import
and you should not add .default
with require
.
For using directly in browser (import with <script>
tag in HTML-file):
You can use AMD or jsx2posthtml
global variable.
Instead of importing jsx2posthtml/es5
, you can specify alias in bandlers like
Webpack:
{
// …
resolve: {
extensions: ['.ts', '.tsx', '.js'],
alias: {
'jsx2posthtml': 'jsx2posthtml/es5',
},
},
};
Also, you can write a similar alias to use other versions, available in this package (described below).
Package contain module
property for use with ES2015 module bundlers
(like Rollup and Webpack 2).
Bundlers moustly used for browsers, so this version is transplitted to ES5 code.
You can also use it directly:
import h from 'jsx2posthtml/es5-esm';
If you don’t want to use transplitted to ES5 code in your bundle, you can use import ES2015 version.
import h from 'jsx2posthtml/es2015';
To use with JSX you should specify:
/** @jsx h */
for Babel, or
{"jsxPragma": "h"}
{
"plugins": [
["transform-react-jsx", {"pragma": "h"}]
]
}
tsconfig.json
, section compilerOptions
:
"jsx": "react",
"jsxFactory": "h"
Then just use:
const node = (
<div class="test">
Hello, world!
</div>
);
/*
node == {
tag: 'div',
attrs: {
class: 'test',
},
content: [
'Hello, world!',
],
}
*/
You can write components — a functions with props argument (component attributes), that returns AST node (similar to React functional component).
import h from 'jsx2posthtml';
import * as render from 'posthtml-render';
const items = ['one', 'two'];
interface ItemProps
{
item: string;
index: number;
children?: JSX.Element;
}
const Item = ( {item, index, children}: ItemProps ) => (
<li id={'item-' + index}>
<h2>{item}</h2>
{children}
</li>
);
const html = render(
<div class="foo">
<h1>Hi!</h1>
<ul>
{
items.map(
( item, index ) => (
<Item
item={item}
index={index}
>
This is item {item}!
</Item>
),
)
}
</ul>
</div>,
);
/*
html == '<div class="foo"><h1>Hi!</h1><ul><li id="item-0">'
+ '<h2>one</h2>This is item one!</li><li id="item-1">'
+ '<h2>two</h2>This is item two!</li></ul></div>';
*/
Attribute dangerouslySetInnerHTML
is also supported:
const html = render(
<div dangerouslySetInnerHTML={{__html: '<strong>allowed</strong>'}} />,
);
/*
html == '<div><strong>allowed</strong></div>'
*/
Or with small improvement, incompatible with React — specifying this object as child element:
const html = render(
<div>
{'<strong>blocked</strong>'}
{{__html: '<strong>allowed</strong>'}}
<em>allowed</em>
</div>,
);
/*
html == '<div><strong>blocked</strong>'
+ '<strong>allowed</strong><em>allowed</em></div>';
*/
You can find more examples in tests.
MIT.
[1.1.0] - 2017-06-07
tslib
used in version for ES2015 module bundlers
(ES5 code with ES2015 modules).FAQs
Converts JSX to PostHTML node
The npm package jsx2posthtml receives a total of 1 weekly downloads. As such, jsx2posthtml popularity was classified as not popular.
We found that jsx2posthtml 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.