Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
r2-streamer-js
Advanced tools
NodeJS implementation (written in TypeScript) and HTTP micro-services (Express middleware) for https://github.com/readium/architecture/tree/master/streamer
node --version
and npm --version
)yarn --version
)https://github.com/readium/r2-streamer-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-streamer-js
Command line install:
npm install r2-streamer-js
OR
yarn add r2-streamer-js
...or manually add in your package.json
:
"dependencies": {
"r2-streamer-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-streamer-js/dist/
(alternatively, GitHub mirror with semantic-versioning release tags: https://github.com/edrlab/r2-streamer-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-streamer-js/dist/**
, so this package can be used directly in a TypeScript project.
Example usage:
// from the index file
import { Server } from "r2-streamer-js";
// ES5 import (assuming node_modules/r2-streamer-js/):
import { Server } from "r2-streamer-js/dist/es5/src/http/server";
// ... or alternatively using a convenient path alias in the TypeScript config (+ WebPack etc.):
import { Server } from "@r2-streamer-js/http/server";
https://david-dm.org/readium/r2-streamer-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.
https://travis-ci.org/readium/r2-streamer-js
TravisCI builds are triggered automatically at every Git "push" in the develop
branch.
A test server app (not production-ready) is automatically deployed at Heroku, at every Git "push" in the develop
branch:
https://readium2.herokuapp.com
A mirror app is also deployed at Now.sh:
Both servers run NodeJS 8, and the apps are based on the ES8-2017 code transpiled from TypeScript.
HTTP CORS headers are served to allow cross-origin / remote API requests.
NPM package (latest published):
https://unpkg.com/r2-streamer-js/dist/gitrev.json
Alternatively, GitHub mirror with semantic-versioning release tags:
https://rawgit.com/edrlab/r2-streamer-js-dist/develop/dist/gitrev.json
Heroku app (latest deployed):
https://readium2.herokuapp.com/version
Now app (latest deployed):
https://readium2.now.sh/version
Command line steps (NPM, but similar with YARN):
cd r2-streamer-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)npm run server-debug PATH_TO_EPUB_OR_DIR
(path is relative or absolute)https://github.com/readium/r2-streamer-js/blob/develop/docs/http.md
https://github.com/readium/r2-streamer-js/blob/develop/docs/remote-epub.md
https://github.com/readium/r2-streamer-js/blob/develop/docs/opds.md
https://github.com/readium/r2-streamer-js/blob/develop/docs/encryption.md
1.0.1
Build environment: NodeJS
8.14.0
, NPM6.5.0
Changes:
Git revision info:
Git commit history:
Git diff:
FAQs
Readium 2 'streamer' for NodeJS (TypeScript)
The npm package r2-streamer-js receives a total of 556 weekly downloads. As such, r2-streamer-js popularity was classified as not popular.
We found that r2-streamer-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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.