
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.
hyperscript-string-async
Advanced tools
An async/promisified version of hyperscript-string
Install hyperscript-string-async using npm:
npm install --save hyperscript-string-async
const h = require('hyperscript-string-async');
h('ul.list', [
h('li.item', 'Lorem ipsum'),
h('li.item', {title: 'Second item'}, 'Dolor sit'),
h('li.item', 'Amet')
])
.then(html => {
/*
<ul class="list">
<li class="item">Lorem ipsum</li>
<li title="Second item" class="item">Dolor sit</li>
<li class="item">Amet</li>
</ul>
*/
});
hyperscript-string - Create HTML strings with JavaScripthyperscript-normalize-args - A hyperscript helper to normalize component arguments, for easier creation of reusable componentshyperscript-helpers - Terse syntax for hyperscripthyperscript - Create HyperText with JavaScript, on client or server.ha(selector[, attrs, children])| Name | Type | Description |
|---|---|---|
| selector | String or Promise<String> | Contains at least the HTML tag name |
| attrs | Object or Promise<Object> or Object<Promise> | Attributes for the HTML tag |
| children | String or Array or Promise<String> or Promise<Array> or Array<Promise> | The children for the HTML tag |
Returns: Promise<String>, the generated HTML.
MIT © Joakim Carlstein
FAQs
An async/promisified version of hyperscript-string
We found that hyperscript-string-async 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.