1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-06 02:39:55 +02:00

A couple more things I forgot: Updated README for codecs package. Updated github workflow for modern versions of Node.

This commit is contained in:
Jeff Schiller 2022-10-30 17:15:03 -07:00
parent d5971c0fdb
commit 5e0dc8c958
3 changed files with 4 additions and 2 deletions

View file

@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node-version: [12.x, 14.x, 15.x]
node-version: [17.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:

3
.gitignore vendored
View file

@ -1 +1,2 @@
node_modules
node_modules
tests/archive.spec.notready.js

View file

@ -7,6 +7,7 @@
A set of dependency-free JavaScript modules to handle binary data in JS (using Typed Arrays). Includes:
* bitjs/archive: Unarchiving files (unzip, unrar, untar) in the browser, implemented as Web Workers and allowing progressively unarchiving while streaming.
* bitjs/codecs: Get the codec info of media containers in a ISO RFC6381 MIME type string
* bitjs/file: Detect the type of file from its binary signature.
* bitjs/image: Conversion of WebP images to PNG or JPEG.
* bitjs/io: Low-level classes for interpreting binary data (BitStream, ByteStream). For example, reading or peeking at N bits at a time.