diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index dba2308..9052a60 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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: diff --git a/.gitignore b/.gitignore index b512c09..dc0d82f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -node_modules \ No newline at end of file +node_modules +tests/archive.spec.notready.js diff --git a/README.md b/README.md index 0c7dace..128409c 100644 --- a/README.md +++ b/README.md @@ -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.