source: trip-planner-front/node_modules/content-type/README.md@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.7 KB
Line 
1# content-type
2
3[![NPM Version][npm-image]][npm-url]
4[![NPM Downloads][downloads-image]][downloads-url]
5[![Node.js Version][node-version-image]][node-version-url]
6[![Build Status][travis-image]][travis-url]
7[![Test Coverage][coveralls-image]][coveralls-url]
8
9Create and parse HTTP Content-Type header according to RFC 7231
10
11## Installation
12
13```sh
14$ npm install content-type
15```
16
17## API
18
19```js
20var contentType = require('content-type')
21```
22
23### contentType.parse(string)
24
25```js
26var obj = contentType.parse('image/svg+xml; charset=utf-8')
27```
28
29Parse a content type string. This will return an object with the following
30properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`):
31
32 - `type`: The media type (the type and subtype, always lower case).
33 Example: `'image/svg+xml'`
34
35 - `parameters`: An object of the parameters in the media type (name of parameter
36 always lower case). Example: `{charset: 'utf-8'}`
37
38Throws a `TypeError` if the string is missing or invalid.
39
40### contentType.parse(req)
41
42```js
43var obj = contentType.parse(req)
44```
45
46Parse the `content-type` header from the given `req`. Short-cut for
47`contentType.parse(req.headers['content-type'])`.
48
49Throws a `TypeError` if the `Content-Type` header is missing or invalid.
50
51### contentType.parse(res)
52
53```js
54var obj = contentType.parse(res)
55```
56
57Parse the `content-type` header set on the given `res`. Short-cut for
58`contentType.parse(res.getHeader('content-type'))`.
59
60Throws a `TypeError` if the `Content-Type` header is missing or invalid.
61
62### contentType.format(obj)
63
64```js
65var str = contentType.format({type: 'image/svg+xml'})
66```
67
68Format an object into a content type string. This will return a string of the
69content type for the given object with the following properties (examples are
70shown that produce the string `'image/svg+xml; charset=utf-8'`):
71
72 - `type`: The media type (will be lower-cased). Example: `'image/svg+xml'`
73
74 - `parameters`: An object of the parameters in the media type (name of the
75 parameter will be lower-cased). Example: `{charset: 'utf-8'}`
76
77Throws a `TypeError` if the object contains an invalid type or parameter names.
78
79## License
80
81[MIT](LICENSE)
82
83[npm-image]: https://img.shields.io/npm/v/content-type.svg
84[npm-url]: https://npmjs.org/package/content-type
85[node-version-image]: https://img.shields.io/node/v/content-type.svg
86[node-version-url]: http://nodejs.org/download/
87[travis-image]: https://img.shields.io/travis/jshttp/content-type/master.svg
88[travis-url]: https://travis-ci.org/jshttp/content-type
89[coveralls-image]: https://img.shields.io/coveralls/jshttp/content-type/master.svg
90[coveralls-url]: https://coveralls.io/r/jshttp/content-type
91[downloads-image]: https://img.shields.io/npm/dm/content-type.svg
92[downloads-url]: https://npmjs.org/package/content-type
Note: See TracBrowser for help on using the repository browser.