
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Beako.js is Web component tools with Data Binding, Template Engine and Virtual DOM for Deno.
Beako.js is web component tools with Data Binding, Template Engine and Virtual DOM.
She support Deno and Web browsers.
Please wait for it to be released in the near future.
The explanation in Japanese is written here.
Beako.js use ES Modules
deno install -f --allow-read --allow-write --allow-env --allow-run https://deno.land/x/beako@v0.9.18/cli/beako.ts
import { watch, hack } from 'https://deno.land/x/beako@v0.9.18/mod.ts'
const data = {
count: 1
}
setInterval(() => { data.count++ }, 1000)
watch(data)
hack(document, `Counter: {{ count }}`, data)
Build:
beako build script.ts --outdir=public
To Import it into html:
<!DOCTYPE html>
<meta charset="UTF-8">
<body>Loading...</body>
<script type="module" src="script.js"></script>
<!DOCTYPE html>
<meta charset="UTF-8">
<body>Loading...</body>
<script type="module">
import { watch, hack } from 'https://unpkg.com/beako@0.9.18/beako.js'
const data = {
count: 1
}
setInterval(() => { data.count++ }, 1000)
watch(data)
hack(document, `Counter: {{ count }}`, data)
</script>
FAQs
Beako.js is Web component tools with Data Binding, Template Engine and Virtual DOM for Deno.
The npm package beako receives a total of 0 weekly downloads. As such, beako popularity was classified as not popular.
We found that beako 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.