node-levn 0.4.1+dfsg-2 source package in Ubuntu

Changelog

node-levn (0.4.1+dfsg-2) unstable; urgency=medium

  * Team upload
  * Remove depends on nodejs

 -- Bastien Roucariès <email address hidden>  Mon, 04 Oct 2021 16:20:56 +0000

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-levn_0.4.1+dfsg-2.dsc 2.0 KiB de32ad3919677febdee385a34f5fa7dfc1ece69dfc0bdb7274c4b37c19a3d222
node-levn_0.4.1+dfsg.orig.tar.xz 19.5 KiB b41c1085ee6be2738f6aaf06a946b505463a71e4047b2670d9502ba87647f255
node-levn_0.4.1+dfsg-2.debian.tar.xz 3.5 KiB e79240cd9c9b54ea7307ebae08c45ccc9d107e233a64f5e179929dcc868155e8

Available diffs

No changes file available.

Binary packages built by this source

node-levn: Light ECMAScript (JavaScript) Value Notation

 Levn is a library which allows you to parse a string into a JavaScript value
 based on an expected type. It is meant for short amounts of human entered data
 (eg. config files, command line arguments).
 .
 Levn aims to concisely describe JavaScript values in text, and allow for the
 extraction and validation of those values. Levn uses 'type-check' for its type
 format, and to validate the results.
 .
 How is this different than JSON? levn is meant to be written by humans only,
 is (due to the previous point) much more concise, can be validated against
 supplied types, has regex and date literals, and can easily be extended with
 custom types. On the other hand, it is probably slower and thus less efficient
 at transporting large amounts of data, which is fine since this is not its
 purpose.
 .
 Node.js is an event-based server-side JavaScript engine.