
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@erickmerchant/framework
Advanced tools
A simple frontend framework. Import it from a CDN, or npm install.
import {
cache
createApp,
createDOMView,
html,
} from 'https://cdn.skypack.dev/@erickmerchant/framework?min'
const app = createApp({items: []})
createApp
takes the initial state of the app. It can be any type, but an object usually makes sense.
const target = document.querySelector('#app')
const cls = getCls()
const view = (state) => html`
<div id="app" class=${cls} />
`
const domView = createDOMView(target, view)
app.render(domView)
This doesn't do much right now, but it does demonstrate a few things.
/>
is required even on tags that normally wouldn't need it and it's allowed on all, even those that normally wouldn't allow it.id="app"
is static. It will be the same each time this view is rendered. The quotes (single or double) are require.class=${cls}
is cached. Its value is not hard-coded. However every time the view is rendered it will not change, even if getCls()
returns a new value.const view = (state) => html`
<div id="app">
<ol>
${state.items.map(
(item) =>
html`
<li>${item}</li>
`
)}
</ol>
</div>
`
This shows how you can have dynamic children and how you'd output an array of items.
Sometimes you'll have some html that needs to be dynamic once but after that can be treated as if it were static. That's where cache
comes into play.
const title = 'The heading'
const heading = cache(
html`
<h1>${title}</h1>
`
)
const view = (state) => html`
<div id="app">
${heading}
<ol>
${state.items.map(
(item) =>
html`
<li>${item}</li>
`
)}
</ol>
</div>
`
Cached attributes are useful, but often you'll have attributes that need to change. This is where you can use properties instead. Properties are always reevaluated. You can indicate a property with :
, a single colon.
let hasFoo = true
let barValue = "I'm the bar value"
const view = (state) => html`
<form id="app">
<label>
Has foo
<input type="checkbox" :checkbox=${hasFoo} />
</label>
<label>
Bar value
<input type="text" :value=${barValue} />
</label>
</form>
`
Also worth pointing out in this example is that hasFoo
is a boolean, which demonstrates how to render boolean properties.
const onClick = (e) => {
e.preventDefault()
}
const view = (state) => html`
<div id="app">
<button @click=${onClick}>Click here</button>
</div>
`
const onClick = (e) => {
e.preventDefault()
app.state = {count: app.state.count + 1}
}
const view = (state) => html`
<div id="app">
<p>${state.count}</p>
<button @click=${onClick}>Click here</button>
</div>
`
import {stringify, html} from '@erickmerchant/framework/stringify.js'
const view = (state) => html`
<div id="app">
<ol>
${state.items.map(
(item) =>
html`
<li>${item}</li>
`
)}
</ol>
</div>
`
const staticHTML = stringify(view({items}))
res.write(staticHTML)
FAQs
A front-end framework.
The npm package @erickmerchant/framework receives a total of 2 weekly downloads. As such, @erickmerchant/framework popularity was classified as not popular.
We found that @erickmerchant/framework 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.