@stdlib/net-http-server 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -3
- package/SECURITY.md +5 -0
- package/docs/types/index.d.ts +1 -1
- package/package.json +11 -23
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -216,7 +216,7 @@ See [LICENSE][stdlib-license].
|
|
|
216
216
|
|
|
217
217
|
## Copyright
|
|
218
218
|
|
|
219
|
-
Copyright © 2016-
|
|
219
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
220
220
|
|
|
221
221
|
</section>
|
|
222
222
|
|
|
@@ -229,8 +229,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
229
229
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/net-http-server.svg
|
|
230
230
|
[npm-url]: https://npmjs.org/package/@stdlib/net-http-server
|
|
231
231
|
|
|
232
|
-
[test-image]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml/badge.svg?branch=v0.1
|
|
233
|
-
[test-url]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml?query=branch:v0.1
|
|
232
|
+
[test-image]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
233
|
+
[test-url]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml?query=branch:v0.2.1
|
|
234
234
|
|
|
235
235
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/net-http-server/main.svg
|
|
236
236
|
[coverage-url]: https://codecov.io/github/stdlib-js/net-http-server?branch=main
|
|
@@ -253,8 +253,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
253
253
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
254
254
|
|
|
255
255
|
[deno-url]: https://github.com/stdlib-js/net-http-server/tree/deno
|
|
256
|
+
[deno-readme]: https://github.com/stdlib-js/net-http-server/blob/deno/README.md
|
|
256
257
|
[umd-url]: https://github.com/stdlib-js/net-http-server/tree/umd
|
|
258
|
+
[umd-readme]: https://github.com/stdlib-js/net-http-server/blob/umd/README.md
|
|
257
259
|
[esm-url]: https://github.com/stdlib-js/net-http-server/tree/esm
|
|
260
|
+
[esm-readme]: https://github.com/stdlib-js/net-http-server/blob/esm/README.md
|
|
258
261
|
[branches-url]: https://github.com/stdlib-js/net-http-server/blob/main/branches.md
|
|
259
262
|
|
|
260
263
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/net-http-server/main/LICENSE
|
package/SECURITY.md
ADDED
package/docs/types/index.d.ts
CHANGED
|
@@ -154,7 +154,7 @@ declare function httpServer( requestListener?: RequestListener ): createServer;
|
|
|
154
154
|
* }
|
|
155
155
|
* var createServer = httpServer( opts, onRequest );
|
|
156
156
|
*/
|
|
157
|
-
declare function httpServer( options: Options, requestListener?: RequestListener ): createServer;
|
|
157
|
+
declare function httpServer( options: Options, requestListener?: RequestListener ): createServer;
|
|
158
158
|
|
|
159
159
|
|
|
160
160
|
// EXPORTS //
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/net-http-server",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "HTTP server.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -16,16 +16,11 @@
|
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
18
|
"doc": "./docs",
|
|
19
|
-
"example": "./examples",
|
|
20
19
|
"lib": "./lib",
|
|
21
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
22
21
|
},
|
|
23
22
|
"types": "./docs/types",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "make test",
|
|
26
|
-
"test-cov": "make test-cov",
|
|
27
|
-
"examples": "make examples"
|
|
28
|
-
},
|
|
23
|
+
"scripts": {},
|
|
29
24
|
"homepage": "https://stdlib.io",
|
|
30
25
|
"repository": {
|
|
31
26
|
"type": "git",
|
|
@@ -35,22 +30,15 @@
|
|
|
35
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
36
31
|
},
|
|
37
32
|
"dependencies": {
|
|
38
|
-
"@stdlib/assert-has-own-property": "^0.1
|
|
39
|
-
"@stdlib/assert-is-function": "^0.1
|
|
40
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.1
|
|
41
|
-
"@stdlib/assert-is-plain-object": "^0.1
|
|
42
|
-
"@stdlib/assert-is-string": "^0.1
|
|
43
|
-
"@stdlib/string-format": "^0.1
|
|
44
|
-
"debug": "^2.6.9"
|
|
45
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.1.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@stdlib/utils-keys": "^0.0.7",
|
|
49
|
-
"@stdlib/utils-noop": "^0.1.0",
|
|
50
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
51
|
-
"istanbul": "^0.4.1",
|
|
52
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
33
|
+
"@stdlib/assert-has-own-property": "^0.2.1",
|
|
34
|
+
"@stdlib/assert-is-function": "^0.2.1",
|
|
35
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.2.1",
|
|
36
|
+
"@stdlib/assert-is-plain-object": "^0.2.1",
|
|
37
|
+
"@stdlib/assert-is-string": "^0.2.1",
|
|
38
|
+
"@stdlib/string-format": "^0.2.1",
|
|
39
|
+
"debug": "^2.6.9"
|
|
53
40
|
},
|
|
41
|
+
"devDependencies": {},
|
|
54
42
|
"engines": {
|
|
55
43
|
"node": ">=0.10.0",
|
|
56
44
|
"npm": ">2.7.0"
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|