![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.
r2-navigator-js
Advanced tools
NodeJS implementation (written in TypeScript) for the navigator module of the Readium2 architecture ( https://github.com/readium/architecture/ ).
node --version
and npm --version
)yarn --version
)https://github.com/readium/r2-navigator-js
There is no github.io site for this project (no gh-pages branch).
Wiki documentation is not used, instead there are Markdown files inside the repository (docs folder).
https://www.npmjs.com/package/r2-navigator-js
Command line install:
npm install r2-navigator-js
OR
yarn add r2-navigator-js
...or manually add in your package.json
:
"dependencies": {
"r2-navigator-js": "latest"
}
The JavaScript code distributed in the NPM package is usable as-is (no transpilation required), as it is automatically-generated from the TypeScript source.
Several ECMAScript flavours are provided out-of-the-box: ES5, ES6-2015, ES7-2016, ES8-2017:
https://unpkg.com/r2-navigator-js/dist/
(alternatively, GitHub mirror with semantic-versioning release tags: https://github.com/edrlab/r2-navigator-js-dist/tree/develop/dist/ )
The JavaScript code is not bundled, and it uses require()
statement for imports (NodeJS style).
More information about NodeJS compatibility:
Note that web-browser Javascript is currently not supported (only NodeJS runtimes).
The type definitions (aka "typings") are included as *.d.ts
files in ./node_modules/r2-navigator-js/dist/**
, so this package can be used directly in a TypeScript project.
Example usage:
// currently no index file
// import { * } from "r2-navigator-js";
// ES5 import (assuming node_modules/r2-navigator-js/):
import { trackBrowserWindow } from "r2-navigator-js/dist/es5/src/electron/main/browser-window-tracker";
// ... or alternatively using a convenient path alias in the TypeScript config (+ WebPack etc.):
import { trackBrowserWindow } from "@r2-navigator-js/electron/main/browser-window-tracker";
https://david-dm.org/readium/r2-navigator-js
A package-lock.json is provided (modern NPM replacement for npm-shrinkwrap.json
).
A yarn.lock file is currently not provided at the root of the source tree.
TODO (unit tests?) https://travis-ci.org/readium/r2-navigator-js
Badge: [![Travis](https://travis-ci.org/readium/r2-navigator-js.svg?branch=develop)](https://travis-ci.org/readium/r2-navigator-js)
NPM package (latest published):
https://unpkg.com/r2-navigator-js/dist/gitrev.json
Alternatively, GitHub mirror with semantic-versioning release tags:
https://rawgit.com/edrlab/r2-navigator-js-dist/develop/dist/gitrev.json
Command line steps (NPM, but similar with YARN):
cd r2-navigator-js
git status
(please ensure there are no local changes, especially in package-lock.json
and the dependency versions in package.json
)rm -rf node_modules
(to start from a clean slate)npm install
, or alternatively npm ci
(both commands initialize the node_modules
tree of package dependencies, based on the strict package-lock.json
definition)npm run build:all
(invoke the main build script: clean, lint, compile)ls dist
(that's the build output which gets published as NPM package)TODO
1.0.0
Build environment: NodeJS
8.14.0
, NPM6.5.0
Changes:
Git revision info:
Git commit history:
Git diff:
FAQs
Readium 2 'navigator' for NodeJS (TypeScript)
The npm package r2-navigator-js receives a total of 478 weekly downloads. As such, r2-navigator-js popularity was classified as not popular.
We found that r2-navigator-js 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.