![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.
als-component
Advanced tools
To show colored html code inside string, use es6-string-html
plugin for Vscode.
Example:
<!-- Add Component class -->
<script src="/component.js"></script>
<!-- Add Initial element with component name and input for changing state -->
<input id="input" type="text" oninput="test.state.name=this.value; test.update()">
<div component="test"></div>
<script>
let test = new Component(
'test', // component name
function() { //function for generating component's html
return /*html*/`<div component="test">
Hello ${this.state.name}
</div>`
},
{name:'Alex'}, // initial state
{update:[ // hooks object with update hook
function(state,init) {
if(init) document.getElementById('input').value = state.name
}
]}
)
// find element [component=test] and update it
test.update()
</script>
let component = new Component(name,component,state = {},hooks={update:[],remove:[],add:[]})
component.fn // component function
component.state // component state
component.hooks // component hooks
Exceptions for component name: state,import,export,convert,script.
<ul component="todos"></ul>
<script>
let todos = [{id:1,name:'do something'},{id:2,name:'do else'}]
// todo component
let todoComponent = new Component('todo',function({name,id}) {
return /*html*/`<li component="todo" id="${id}">${name}</li>`
})
// todos component
let todosComponent = new Component('todos',function() {
return /*html*/`
<ul component="todos">
${this.state.todos.map(todo => todoComponent.fn(todo)).join('')}
</ul>`
},{todos})
todosComponent.update()
</script>
remove,apdate, add, addBefore, addAfter
remove,apdate, add init
FAQs
lightweight JavaScript library for creating reactive, server-rendered, and browser-based components.
The npm package als-component receives a total of 10 weekly downloads. As such, als-component popularity was classified as not popular.
We found that als-component demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.