![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@kdujs/canary
Advanced tools
The progressive JavaScript framework for building modern web UI.
kdu(.runtime).global(.prod).js
:
<script src="...">
in the browser. Exposes the Kdu
global.<script src="...">
.kdu.global.js
is the "full" build that includes both the compiler and the runtime so it supports compiling templates on the fly.kdu.runtime.global.js
contains only the runtime and requires templates to be pre-compiled during a build step.*.prod.js
files for production.kdu(.runtime).esm-browser(.prod).js
:
<script type="module">
.kdu(.runtime).esm-bundler.js
:
webpack
, rollup
and parcel
.process.env.NODE_ENV
guards (must be replaced by bundler)@kdujs/runtime-core
, @kdujs/runtime-compiler
)
esm-bundler
builds and will in turn import their dependencies (e.g. @kdujs/runtime-core
imports @kdujs/reactivity
)kdu.runtime.esm-bundler.js
(default) is runtime only, and requires all templates to be pre-compiled. This is the default entry for bundlers (via module
field in package.json
) because when using a bundler templates are typically pre-compiled (e.g. in *.kdu
files).kdu.esm-bundler.js
: includes the runtime compiler. Use this if you are using a bundler but still want runtime template compilation (e.g. in-DOM templates or templates via inline JavaScript strings). You will need to configure your bundler to alias kdu
to this file.Starting with 3.0.0, esm-bundler
builds now exposes global feature flags that can be overwritten at compile time:
__KDU_OPTIONS_API__
(enable/disable Options API support, default: true
)__KDU_PROD_DEVTOOLS__
(enable/disable devtools support in production, default: false
)The build will work without configuring these flags, however it is strongly recommended to properly configure them in order to get proper tree-shaking in the final bundle. To configure these flags:
define
optionNote: the replacement value must be boolean literals and cannot be strings, otherwise the bundler/minifier will not be able to properly evaluate the conditions.
kdu.cjs(.prod).js
:
require()
.target: 'node'
and properly externalize kdu
, this is the build that will be loaded.process.env.NODE_ENV
.FAQs
The progressive JavaScript framework for building modern web UI.
The npm package @kdujs/canary receives a total of 141 weekly downloads. As such, @kdujs/canary popularity was classified as not popular.
We found that @kdujs/canary demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.