Skip to content

Commit 41db4c0

Browse files
committedNov 3, 2021
fix: skypack.dev for direct browser import, fixes #263
1 parent 8857363 commit 41db4c0

File tree

2 files changed

+34
-52
lines changed

2 files changed

+34
-52
lines changed
 

‎README.md

+17-26
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ A comprehensive, compact MIME type module.
77

88
[![Build Status](https://travis-ci.org/broofa/mime.svg?branch=master)](https://travis-ci.org/broofa/mime)
99

10-
## Version 2 Notes
11-
12-
Version 2 is a breaking change from 1.x as the semver implies. Specifically:
13-
14-
* `lookup()` renamed to `getType()`
15-
* `extension()` renamed to `getExtension()`
16-
* `charset()` and `load()` methods have been removed
17-
18-
If you prefer the legacy version of this module please `npm install mime@^1`. Version 1 docs may be found [here](https://github.com/broofa/mime/tree/v1.4.0).
19-
2010
## Install
2111

2212
### NPM
@@ -28,20 +18,21 @@ npm install mime
2818

2919
It is recommended that you use a bundler such as
3020
[webpack](https://webpack.github.io/) or [browserify](http://browserify.org/) to
31-
package your code. However, browser-ready versions are available via wzrd.in.
32-
E.g. For the full version:
33-
34-
<script src="https://wzrd.in/standalone/mime@latest"></script>
35-
<script>
36-
mime.getType(...); // etc.
37-
</script>
38-
39-
Or, for the `mime/lite` version:
21+
package your code. However, browser-ready versions are available via
22+
skypack.dev as follows:
23+
```
24+
// Full version
25+
<script type="module">
26+
import mime from "https://cdn.skypack.dev/mime";
27+
</script>
28+
```
4029

41-
<script src="https://wzrd.in/standalone/mime%2flite@latest"></script>
42-
<script>
43-
mimelite.getType(...); // (Note `mimelite` here)
44-
</script>
30+
```
31+
// "lite" version
32+
<script type="module">
33+
import mime from "https://cdn.skypack.dev/mime/lite";
34+
</script>
35+
```
4536

4637
## Quick Start
4738

@@ -58,9 +49,9 @@ See [Mime API](#mime-api) below for API details.
5849

5950
## Lite Version
6051

61-
There is also a "lite" version of this module that omits vendor-specific
62-
(`*/vnd.*`) and experimental (`*/x-*`) types. It weighs in at ~2.5KB, compared
63-
to 8KB for the full version. To load the lite version:
52+
The "lite" version of this module omits vendor-specific (`*/vnd.*`) and
53+
experimental (`*/x-*`) types. It weighs in at ~2.5KB, compared to 8KB for the
54+
full version. To load the lite version:
6455

6556
```javascript
6657
const mime = require('mime/lite');

‎src/README_js.md

+17-26
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ A comprehensive, compact MIME type module.
77

88
[![Build Status](https://travis-ci.org/broofa/mime.svg?branch=master)](https://travis-ci.org/broofa/mime)
99

10-
## Version 2 Notes
11-
12-
Version 2 is a breaking change from 1.x as the semver implies. Specifically:
13-
14-
* `lookup()` renamed to `getType()`
15-
* `extension()` renamed to `getExtension()`
16-
* `charset()` and `load()` methods have been removed
17-
18-
If you prefer the legacy version of this module please `npm install mime@^1`. Version 1 docs may be found [here](https://github.com/broofa/mime/tree/v1.4.0).
19-
2010
## Install
2111

2212
### NPM
@@ -28,20 +18,21 @@ npm install mime
2818

2919
It is recommended that you use a bundler such as
3020
[webpack](https://webpack.github.io/) or [browserify](http://browserify.org/) to
31-
package your code. However, browser-ready versions are available via wzrd.in.
32-
E.g. For the full version:
33-
34-
<script src="https://wzrd.in/standalone/mime@latest"></script>
35-
<script>
36-
mime.getType(...); // etc.
37-
</script>
38-
39-
Or, for the `mime/lite` version:
21+
package your code. However, browser-ready versions are available via
22+
skypack.dev as follows:
23+
```
24+
// Full version
25+
<script type="module">
26+
import mime from "https://cdn.skypack.dev/mime";
27+
</script>
28+
```
4029

41-
<script src="https://wzrd.in/standalone/mime%2flite@latest"></script>
42-
<script>
43-
mimelite.getType(...); // (Note `mimelite` here)
44-
</script>
30+
```
31+
// "lite" version
32+
<script type="module">
33+
import mime from "https://cdn.skypack.dev/mime/lite";
34+
</script>
35+
```
4536

4637
## Quick Start
4738

@@ -58,9 +49,9 @@ See [Mime API](#mime-api) below for API details.
5849

5950
## Lite Version
6051

61-
There is also a "lite" version of this module that omits vendor-specific
62-
(`*/vnd.*`) and experimental (`*/x-*`) types. It weighs in at ~2.5KB, compared
63-
to 8KB for the full version. To load the lite version:
52+
The "lite" version of this module omits vendor-specific (`*/vnd.*`) and
53+
experimental (`*/x-*`) types. It weighs in at ~2.5KB, compared to 8KB for the
54+
full version. To load the lite version:
6455

6556
```javascript
6657
const mime = require('mime/lite');

0 commit comments

Comments
 (0)
Please sign in to comment.