@stdlib/net-http-server 0.1.0 → 0.2.0

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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
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-2023. The Stdlib [Authors][stdlib-authors].
219
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
220
220
 
221
221
  </section>
222
222
 
@@ -229,8 +229,8 @@ Copyright &copy; 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.0
233
- [test-url]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml?query=branch:v0.1.0
232
+ [test-image]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml/badge.svg?branch=v0.2.0
233
+ [test-url]: https://github.com/stdlib-js/net-http-server/actions/workflows/test.yml?query=branch:v0.2.0
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 &copy; 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
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -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; // tslint-disable-line max-line-length
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.0",
3
+ "version": "0.2.0",
4
4
  "description": "HTTP server.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -35,18 +35,18 @@
35
35
  "url": "https://github.com/stdlib-js/stdlib/issues"
36
36
  },
37
37
  "dependencies": {
38
- "@stdlib/assert-has-own-property": "^0.1.0",
39
- "@stdlib/assert-is-function": "^0.1.0",
40
- "@stdlib/assert-is-nonnegative-integer": "^0.1.0",
41
- "@stdlib/assert-is-plain-object": "^0.1.0",
42
- "@stdlib/assert-is-string": "^0.1.0",
43
- "@stdlib/string-format": "^0.1.0",
38
+ "@stdlib/assert-has-own-property": "^0.1.1",
39
+ "@stdlib/assert-is-function": "^0.2.0",
40
+ "@stdlib/assert-is-nonnegative-integer": "^0.2.0",
41
+ "@stdlib/assert-is-plain-object": "^0.2.0",
42
+ "@stdlib/assert-is-string": "^0.2.0",
43
+ "@stdlib/string-format": "^0.2.0",
44
44
  "debug": "^2.6.9",
45
- "@stdlib/error-tools-fmtprodmsg": "^0.1.0"
45
+ "@stdlib/error-tools-fmtprodmsg": "^0.1.1"
46
46
  },
47
47
  "devDependencies": {
48
- "@stdlib/utils-keys": "^0.0.7",
49
- "@stdlib/utils-noop": "^0.1.0",
48
+ "@stdlib/utils-keys": "^0.1.0",
49
+ "@stdlib/utils-noop": "^0.2.0",
50
50
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
51
51
  "istanbul": "^0.4.1",
52
52
  "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
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