![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Simplest MVVM
A practice of hyperapp
Checkout the examples
Slimapp provides two functions: h
and app
.
h
h
helps you to build your vdom
var vdom = h('span', {class: 'test'}, ['text'])
// vdom: {
// tagName: 'span',
// key: undefined,
// props: {class: 'test'},
// children: ['text']
// }
app
app
helps you to start your app
var view = function(actions, state) {
return h('p', {}, [state.a])
}
var actions = {
add: data => state => { state.a += data },
minus: data => state => { state.a -= data }
}
var state = {
a: 1
}
var vm = app(view, actions, state, document.body)
console.log(document.body.innerHTML) // '<p>1</p>'
vm.add(1) // '<p>2</p>'
vm.minus(3) // '<p>-1</p>'
FAQs
a simple mvvm
The npm package slimapp receives a total of 2 weekly downloads. As such, slimapp popularity was classified as not popular.
We found that slimapp 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.