2.6.7 • Published 10 days ago

@thi.ng/mime v2.6.7

Weekly downloads
35
License
Apache-2.0
Repository
github
Last release
10 days ago

mime

npm version npm downloads Twitter Follow

This project is part of the @thi.ng/umbrella monorepo.

About

650+ file extension to MIME type mappings, based on mime-db.

All MIME type mappings based on mime-db (2021-03-26). For filesize reasons only a small selected number of vendor MIME types (aka */vnd.*) are included. Most of the omitted ones are fairly obscure anyway, so likely not problematic...

Status

STABLE - used in production

Search or submit any issues for this package

Related packages

  • @thi.ng/dl-asset - Local asset download for web apps, with automatic MIME type detection

Installation

yarn add @thi.ng/mime

ES module import:

<script type="module" src="https://cdn.skypack.dev/@thi.ng/mime"></script>

Skypack documentation

For Node.js REPL:

# with flag only for < v16
node --experimental-repl-await

> const mime = await import("@thi.ng/mime");

Package sizes (gzipped, pre-treeshake): ESM: 4.94 KB

Dependencies

API

Generated API docs

This package exposes a MIME_TYPES object which provides mappings from file extensions to MIME types. For each extension one or more MIME types are provided, with the default type always in first position.

import { MIME_TYPES } from "@thi.ng/mime";

MIME_TYPES.mp3
// [ 'audio/mpeg', 'audio/mp3' ]

MIME_TYPES.jpg
// [ 'image/jpeg' ]

MIME_TYPES.jpeg
// [ 'image/jpeg' ]

To simplify lookup and support a fallback type, the package also has preferredType() function:

import { preferredType } from "@thi.ng/mime";

preferredType("mp3")
// "audio/mpeg"

// unknown file extension w/ default fallback type
preferredType("foo")
// "application/octet-stream"

// unknown file extension w/ given fallback type
preferredType("foo", "text/plain")
// "text/plain"

Since v0.3.0 reverse lookups are possible too, using preferredExtension() (also supports fallback):

preferredExtension("image/svg+xml");
// "svg"

preferredExtension("image/foo");
// "bin" (default fallback)

preferredExtension("image/foo", "dat");
// "dat" (custom fallback)

Conversion from mime-db

  1. Download the latest version of mime-db's JSON index and save it to [packages/mime/]tools/mime-db.json
  2. Run the following command to build an up-to-date index (assumes the umbrella repo has been pre-built already). Output will always be be written to src/generated.ts.
# from the thi.ng/umbrella repo root
cd packages/mime
yarn tool:convert

Additional configuration options are available in the tools/convert.ts script.

Authors

Karsten Schmidt

If this project contributes to an academic publication, please cite it as:

@misc{thing-mime,
  title = "@thi.ng/mime",
  author = "Karsten Schmidt",
  note = "https://thi.ng/mime",
  year = 2020
}

License

© 2020 - 2021 Karsten Schmidt // Apache Software License 2.0

2.6.7

10 days ago

2.6.6

13 days ago

2.6.5

22 days ago

2.6.4

25 days ago

2.6.3

1 month ago

2.6.2

2 months ago

2.6.1

2 months ago

2.6.0

2 months ago

2.5.4

2 months ago

2.5.3

2 months ago

2.5.2

2 months ago

2.5.1

2 months ago

2.5.0

3 months ago

2.4.0

3 months ago

2.3.12

3 months ago

2.3.8

3 months ago

2.3.9

3 months ago

2.3.11

3 months ago

2.3.10

3 months ago

2.3.7

3 months ago

2.3.6

3 months ago

2.3.4

4 months ago

2.3.5

4 months ago

2.3.2

5 months ago

2.3.3

5 months ago

2.3.1

5 months ago

2.3.0

5 months ago

2.2.28

6 months ago

2.2.29

5 months ago

2.2.26

6 months ago

2.2.24

8 months ago

2.2.25

8 months ago

2.2.22

9 months ago

2.2.23

9 months ago

2.2.20

9 months ago

2.2.30

5 months ago

2.2.19

11 months ago

2.2.18

12 months ago

2.2.17

1 year ago

2.2.15

1 year ago

2.2.16

1 year ago

2.2.13

1 year ago

2.2.14

1 year ago

2.2.11

1 year ago

2.2.12

1 year ago

2.2.10

1 year ago

2.2.7

2 years ago

2.2.6

2 years ago

2.2.9

1 year ago

2.2.8

1 year ago

2.2.5

2 years ago

2.2.3

2 years ago

2.2.4

2 years ago

2.2.1

2 years ago

2.2.2

2 years ago

2.2.0

2 years ago

2.1.4

2 years ago

2.0.8

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.3

2 years ago

2.1.0

2 years ago

2.0.7

2 years ago

2.0.4

3 years ago

2.0.6

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.3

3 years ago

0.5.4

3 years ago

0.5.3

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.33

3 years ago

0.1.30

3 years ago

0.1.31

3 years ago

0.1.32

3 years ago

0.1.29

3 years ago

0.1.28

3 years ago

0.1.27

3 years ago

0.1.26

3 years ago

0.1.25

3 years ago

0.1.24

3 years ago

0.1.23

3 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.19

4 years ago

0.1.18

4 years ago

0.1.17

4 years ago

0.1.16

4 years ago

0.1.15

4 years ago

0.1.14

4 years ago

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago