Compare commits
78 Commits
Author | SHA1 | Date | |
---|---|---|---|
4a4b64a2c4 | |||
43d4b47782 | |||
6d970cb925 | |||
43710c930e | |||
306dd7c366 | |||
3d69d97891 | |||
a6d52702fd | |||
de31ee6093 | |||
cd2d7b2525 | |||
2d4a75c9cd | |||
557fec0386 | |||
e803f9e48d | |||
76c714a931 | |||
e8669f0420 | |||
d9e6214a7e | |||
7c4227bfc6 | |||
e55a521395 | |||
06fc279caf | |||
e89e317bbc | |||
d182832e47 | |||
92059a50de | |||
db80f2df7e | |||
145505b891 | |||
f4f50c6a94 | |||
d204059313 | |||
00210566d5 | |||
14245b2521 | |||
f0fa91e2db | |||
19a1fe1524 | |||
27770a8ad1 | |||
ab48f11e83 | |||
a0a9e3f824 | |||
c829b06169 | |||
80fa40baf4 | |||
3659b80e1e | |||
770e7d46ea | |||
2a46f2a306 | |||
eae4d09664 | |||
23a2f597fc | |||
c278249c32 | |||
a32c372374 | |||
f98972d9fe | |||
acebe6a381 | |||
7031504852 | |||
3010a1da9a | |||
cdead33be4 | |||
5e23649702 | |||
cc6bd5726a | |||
f487584e80 | |||
443bccd4c9 | |||
f359856b1d | |||
bda04f124b | |||
466187fd52 | |||
d22504317e | |||
6e31d84798 | |||
36472b7306 | |||
e86f14b8d8 | |||
2b9e7f6dd2 | |||
5e4afccf9c | |||
3de7a1a210 | |||
bd2a5eedff | |||
aa18357d75 | |||
9960aff219 | |||
03d884ed59 | |||
9a0ac6fc62 | |||
ad35ea4eb8 | |||
ffb0195f04 | |||
78737c24df | |||
6e276eda00 | |||
021d26a23a | |||
c9c8a1234c | |||
dffabd905f | |||
36f2707141 | |||
b00d674b6f | |||
b09598d465 | |||
acc7b2d46f | |||
16a97a420c | |||
a73c78e54b |
4
.gitignore
vendored
4
.gitignore
vendored
@ -15,8 +15,6 @@ node_modules/
|
|||||||
|
|
||||||
# builds
|
# builds
|
||||||
dist/
|
dist/
|
||||||
dist_web/
|
dist_*/
|
||||||
dist_serve/
|
|
||||||
dist_ts_web/
|
|
||||||
|
|
||||||
# custom
|
# custom
|
113
.gitlab-ci.yml
113
.gitlab-ci.yml
@ -3,75 +3,82 @@ image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
|||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- .npmci_cache/
|
- .npmci_cache/
|
||||||
key: "$CI_BUILD_STAGE"
|
key: '$CI_BUILD_STAGE'
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- security
|
- security
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
- metadata
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# security stage
|
# security stage
|
||||||
# ====================
|
# ====================
|
||||||
mirror:
|
auditProductionDependencies:
|
||||||
stage: security
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
script:
|
|
||||||
- npmci git mirror
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
snyk:
|
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci command npm install -g snyk
|
- npmci command npm install --production --ignore-scripts
|
||||||
- npmci command npm install --ignore-scripts
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
- npmci command snyk test
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
allow_failure: true
|
||||||
|
|
||||||
|
auditDevDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=dev
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# test stage
|
# test stage
|
||||||
# ====================
|
# ====================
|
||||||
|
|
||||||
testLTS:
|
testStable:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci node install lts
|
- npmci node install stable
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci npm test
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- priv
|
|
||||||
|
|
||||||
testBuild:
|
testBuild:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci node install lts
|
- npmci node install stable
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command npm run build
|
- npmci command npm run build
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
script:
|
script:
|
||||||
- npmci node install lts
|
- npmci node install stable
|
||||||
- npmci npm publish
|
- npmci npm publish
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- lossless
|
||||||
- notpriv
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# metadata stage
|
# metadata stage
|
||||||
@ -79,35 +86,37 @@ release:
|
|||||||
codequality:
|
codequality:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g tslint typescript
|
- npmci command npm install -g typescript
|
||||||
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- lossless
|
||||||
- priv
|
- docker
|
||||||
|
- priv
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci trigger
|
- npmci trigger
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- lossless
|
||||||
- notpriv
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-dbase:npmci
|
|
||||||
services:
|
|
||||||
- docker:18-dind
|
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g @gitzone/tsdoc
|
- npmci node install stable
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command tsdoc
|
- npmci command npm run buildDocs
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
only:
|
only:
|
||||||
@ -115,5 +124,5 @@ pages:
|
|||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "npm test",
|
||||||
|
"name": "Run npm test",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
69
README.md
69
README.md
@ -1,69 +0,0 @@
|
|||||||
# @pushrocks/smartrequest
|
|
||||||
dropin replacement for request
|
|
||||||
|
|
||||||
## Availabililty and Links
|
|
||||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartrequest)
|
|
||||||
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartrequest)
|
|
||||||
* [github.com (source mirror)](https://github.com/pushrocks/smartrequest)
|
|
||||||
* [docs (typedoc)](https://pushrocks.gitlab.io/smartrequest/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
[](https://gitlab.com/pushrocks/smartrequest/commits/master)
|
|
||||||
[](https://gitlab.com/pushrocks/smartrequest/commits/master)
|
|
||||||
[](https://www.npmjs.com/package/@pushrocks/smartrequest)
|
|
||||||
[](https://snyk.io/test/npm/@pushrocks/smartrequest)
|
|
||||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
||||||
[](https://prettier.io/)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Use TypeScript for best in class instellisense.
|
|
||||||
|
|
||||||
> note: smartrequest uses the **native** node request module under the hood (not the one from npm)
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
import * as smartrequest from 'smartrequest'
|
|
||||||
|
|
||||||
// simple post
|
|
||||||
let options: smartrequest.ISmartRequestOptions = { // typed options
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json"
|
|
||||||
"Authorization": "Bearer token"
|
|
||||||
},
|
|
||||||
requestBody: {
|
|
||||||
key1: 'value1',
|
|
||||||
key2: 3
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
smartrequest.post('https://example.com', options).then(res => {
|
|
||||||
console.log(res.status)
|
|
||||||
console.log(res.body) // if json, body will be parsed automatically
|
|
||||||
}).catch(err => {
|
|
||||||
console.log(err)
|
|
||||||
})
|
|
||||||
|
|
||||||
// also available
|
|
||||||
smartrequest.get(...)
|
|
||||||
smartrequest.put(...)
|
|
||||||
smartrequest.del(...)
|
|
||||||
|
|
||||||
// streaming
|
|
||||||
smartrequest.get('https://example.com/bigfile.mp4', optionsArg, true).then(res => { // third arg = true signals streaming
|
|
||||||
console.log(res.status)
|
|
||||||
res.on('data', data => {
|
|
||||||
// do something with the data chunk here
|
|
||||||
}
|
|
||||||
res.on('end', () => {
|
|
||||||
// do something when things have ended
|
|
||||||
})
|
|
||||||
})
|
|
||||||
```
|
|
||||||
|
|
||||||
For further information read the linked docs at the top of this readme.
|
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
||||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
|
||||||
|
|
||||||
[](https://maintainedby.lossless.com)
|
|
@ -7,11 +7,12 @@
|
|||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
},
|
},
|
||||||
"gitzone": {
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
"module": {
|
"module": {
|
||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "pushrocks",
|
"gitscope": "pushrocks",
|
||||||
"gitrepo": "smartrequest",
|
"gitrepo": "smartrequest",
|
||||||
"shortDescription": "dropin replacement for request",
|
"description": "dropin replacement for request",
|
||||||
"npmPackagename": "@pushrocks/smartrequest",
|
"npmPackagename": "@pushrocks/smartrequest",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
|
15221
package-lock.json
generated
15221
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
47
package.json
47
package.json
@ -1,13 +1,15 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartrequest",
|
"name": "@pushrocks/smartrequest",
|
||||||
"version": "1.1.23",
|
"version": "2.0.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "dropin replacement for request",
|
"description": "dropin replacement for request",
|
||||||
"main": "dist/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild)"
|
"build": "(tsbuild --web)",
|
||||||
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -23,28 +25,31 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
|
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartpromise": "^3.0.2",
|
"@pushrocks/smartpromise": "^3.1.7",
|
||||||
"@types/form-data": "^2.2.1",
|
"@pushrocks/smarturl": "^3.0.2",
|
||||||
"form-data": "^2.3.3"
|
"agentkeepalive": "^4.2.1",
|
||||||
|
"form-data": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.8",
|
"@gitzone/tsbuild": "^2.1.63",
|
||||||
"@gitzone/tsrun": "^1.2.5",
|
"@gitzone/tsrun": "^1.2.37",
|
||||||
"@gitzone/tstest": "^1.0.20",
|
"@gitzone/tstest": "^1.0.72",
|
||||||
"@pushrocks/tapbundle": "^3.0.9",
|
"@pushrocks/tapbundle": "^5.0.4",
|
||||||
"@types/node": "^11.13.6",
|
"@types/node": "^18.6.2"
|
||||||
"tslint": "^5.19.0",
|
|
||||||
"tslint-config-prettier": "^1.18.0"
|
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/*",
|
"ts/**/*",
|
||||||
"ts_web/*",
|
"ts_web/**/*",
|
||||||
"dist/*",
|
"dist/**/*",
|
||||||
"dist_web/*",
|
"dist_*/**/*",
|
||||||
"dist_ts_web/*",
|
"dist_ts/**/*",
|
||||||
"assets/*",
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
"cli.js",
|
"cli.js",
|
||||||
"npmextra.json",
|
"npmextra.json",
|
||||||
"readme.md"
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
96
readme.md
Normal file
96
readme.md
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
# @pushrocks/smartrequest
|
||||||
|
dropin replacement for request
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartrequest)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartrequest)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartrequest)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartrequest/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
|
||||||
|
Status Category | Status Badge
|
||||||
|
-- | --
|
||||||
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
|
npm | [](https://lossless.cloud)
|
||||||
|
Snyk | [](https://lossless.cloud)
|
||||||
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
Code Style | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- supports http
|
||||||
|
- supports https
|
||||||
|
- supports unix socks
|
||||||
|
- supports formData
|
||||||
|
- supports file uploads
|
||||||
|
- supports best practice keepAlive
|
||||||
|
- dedicated functions for working with JSON request/response cycles
|
||||||
|
- written in TypeScript
|
||||||
|
- continuously updated
|
||||||
|
- uses node native http and https modules
|
||||||
|
- used in modules like @pushrocks/smartproxy and @apiglobal/typedrequest
|
||||||
|
- commercial support available at [https://lossless.support](https://lossless.support)
|
||||||
|
|
||||||
|
> note: smartrequest uses the **native** node http/https modules under the hood (not the bloated one from npm)
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
import * as smartrequest from 'smartrequest'
|
||||||
|
|
||||||
|
// simple post
|
||||||
|
const options: smartrequest.ISmartRequestOptions = { // typed options
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json"
|
||||||
|
"Authorization": "Bearer token"
|
||||||
|
},
|
||||||
|
requestBody: JSON.stringify({
|
||||||
|
key1: 'value1',
|
||||||
|
key2: 3
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
smartrequest.request('https://example.com', options).then(res => {
|
||||||
|
console.log(res.status)
|
||||||
|
console.log(res.body) // if json, body will be parsed automatically
|
||||||
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
})
|
||||||
|
|
||||||
|
// dedicated JSON methods are available:
|
||||||
|
smartrequest.getJson(...)
|
||||||
|
smartrequest.postJson(...)
|
||||||
|
smartrequest.putJson(...)
|
||||||
|
smartrequest.delJson(...)
|
||||||
|
|
||||||
|
// streaming
|
||||||
|
smartrequest.get('https://example.com/bigfile.mp4', optionsArg, true).then(res => { // third arg = true signals streaming
|
||||||
|
console.log(res.status)
|
||||||
|
res.on('data', data => {
|
||||||
|
// do something with the data chunk here
|
||||||
|
}
|
||||||
|
res.on('end', () => {
|
||||||
|
// do something when things have ended
|
||||||
|
})
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
26
test/test.ts
26
test/test.ts
@ -1,25 +1,23 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
import { tap, expect, expectAsync } from '@pushrocks/tapbundle';
|
||||||
|
|
||||||
import * as smartrequest from '../ts/index';
|
import * as smartrequest from '../ts/index.js';
|
||||||
|
|
||||||
tap.test('should request a html document over https', async () => {
|
tap.test('should request a html document over https', async () => {
|
||||||
await expect(smartrequest.getJson('https://encrypted.google.com/'))
|
await expectAsync(smartrequest.getJson('https://encrypted.google.com/')).toHaveProperty('body');
|
||||||
.to.eventually.property('body')
|
|
||||||
.be.a('string');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should request a JSON document over https', async () => {
|
tap.test('should request a JSON document over https', async () => {
|
||||||
await expect(smartrequest.getJson('https://jsonplaceholder.typicode.com/posts/1'))
|
await expectAsync(smartrequest.getJson('https://jsonplaceholder.typicode.com/posts/1'))
|
||||||
.to.eventually.property('body')
|
.property('body')
|
||||||
.property('id')
|
.property('id')
|
||||||
.equal(1);
|
.toEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should post a JSON document over http', async () => {
|
tap.skip.test('should post a JSON document over http', async () => {
|
||||||
await expect(smartrequest.postJson('http://md5.jsontest.com/?text=example_text'))
|
await expectAsync(smartrequest.postJson('http://md5.jsontest.com/?text=example_text'))
|
||||||
.to.eventually.property('body')
|
.property('body')
|
||||||
.property('md5')
|
.property('md5')
|
||||||
.equal('fa4c6baa0812e5b5c80ed8885e55a8a6');
|
.toEqual('fa4c6baa0812e5b5c80ed8885e55a8a6');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.skip.test('should deal with unix socks', async () => {
|
tap.skip.test('should deal with unix socks', async () => {
|
||||||
@ -28,8 +26,8 @@ tap.skip.test('should deal with unix socks', async () => {
|
|||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
Host: 'docker.sock'
|
Host: 'docker.sock',
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
console.log(socketResponse.body);
|
console.log(socketResponse.body);
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@pushrocks/smartrequest',
|
||||||
|
version: '2.0.5',
|
||||||
|
description: 'dropin replacement for request'
|
||||||
|
}
|
11
ts/index.ts
11
ts/index.ts
@ -1,6 +1,7 @@
|
|||||||
export { request, IExtendedIncomingMessage } from './smartrequest.request';
|
export { request } from './smartrequest.request.js';
|
||||||
export { ISmartRequestOptions } from './smartrequest.interfaces';
|
export type { IExtendedIncomingMessage } from './smartrequest.request.js';
|
||||||
|
export type { ISmartRequestOptions } from './smartrequest.interfaces.js';
|
||||||
|
|
||||||
export * from './smartrequest.jsonrest';
|
export * from './smartrequest.jsonrest.js';
|
||||||
export * from './smartrequest.binaryrest';
|
export * from './smartrequest.binaryrest.js';
|
||||||
export * from './smartrequest.formdata';
|
export * from './smartrequest.formdata.js';
|
||||||
|
@ -1,27 +1,31 @@
|
|||||||
// this file implements methods to get and post binary data.
|
// this file implements methods to get and post binary data.
|
||||||
import * as interfaces from './smartrequest.interfaces';
|
import * as interfaces from './smartrequest.interfaces.js';
|
||||||
import { request } from './smartrequest.request';
|
import { request } from './smartrequest.request.js';
|
||||||
|
|
||||||
import * as plugins from './smartrequest.plugins';
|
import * as plugins from './smartrequest.plugins.js';
|
||||||
|
|
||||||
export const getBinary = async (
|
export const getBinary = async (
|
||||||
domainArg: string,
|
domainArg: string,
|
||||||
optionsArg: interfaces.ISmartRequestOptions = {}
|
optionsArg: interfaces.ISmartRequestOptions = {}
|
||||||
) => {
|
) => {
|
||||||
|
optionsArg = {
|
||||||
|
...optionsArg,
|
||||||
|
autoJsonParse: false,
|
||||||
|
};
|
||||||
const done = plugins.smartpromise.defer();
|
const done = plugins.smartpromise.defer();
|
||||||
const response = await request(domainArg, optionsArg, true);
|
const response = await request(domainArg, optionsArg, true);
|
||||||
const data = [];
|
const data: Array<Buffer> = [];
|
||||||
|
|
||||||
response
|
response
|
||||||
.on('data', function(chunk) {
|
.on('data', function (chunk: Buffer) {
|
||||||
data.push(chunk);
|
data.push(chunk);
|
||||||
})
|
})
|
||||||
.on('end', function() {
|
.on('end', function () {
|
||||||
//at this point data is an array of Buffers
|
//at this point data is an array of Buffers
|
||||||
//so Buffer.concat() can make us a new Buffer
|
//so Buffer.concat() can make us a new Buffer
|
||||||
//of all of them together
|
//of all of them together
|
||||||
const buffer = Buffer.concat(data);
|
const buffer = Buffer.concat(data);
|
||||||
response.body = buffer.toString('binary');
|
response.body = buffer;
|
||||||
done.resolve();
|
done.resolve();
|
||||||
});
|
});
|
||||||
await done.promise;
|
await done.promise;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import * as plugins from './smartrequest.plugins';
|
import * as plugins from './smartrequest.plugins.js';
|
||||||
import * as interfaces from './smartrequest.interfaces';
|
import * as interfaces from './smartrequest.interfaces.js';
|
||||||
import { request } from './smartrequest.request';
|
import { request } from './smartrequest.request.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the interfae for FormFieldData
|
* the interfae for FormFieldData
|
||||||
@ -8,16 +8,38 @@ import { request } from './smartrequest.request';
|
|||||||
export interface IFormField {
|
export interface IFormField {
|
||||||
name: string;
|
name: string;
|
||||||
type: 'string' | 'filePath' | 'Buffer';
|
type: 'string' | 'filePath' | 'Buffer';
|
||||||
payload: string;
|
payload: string | Buffer;
|
||||||
|
fileName?: string;
|
||||||
|
contentType?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const appendFormField = async (formDataArg: plugins.formData, formDataField: IFormField) => {
|
const appendFormField = async (formDataArg: plugins.formData, formDataField: IFormField) => {
|
||||||
if (formDataField.type === 'filePath') {
|
switch (formDataField.type) {
|
||||||
let fileData = plugins.fs.readFileSync(plugins.path.join(process.cwd(), formDataField.payload));
|
case 'string':
|
||||||
formDataArg.append('file', fileData, {
|
formDataArg.append(formDataField.name, formDataField.payload);
|
||||||
filename: 'upload.pdf',
|
break;
|
||||||
contentType: 'application/pdf'
|
case 'filePath':
|
||||||
});
|
if (typeof formDataField.payload !== 'string') {
|
||||||
|
throw new Error(
|
||||||
|
`Payload for key ${
|
||||||
|
formDataField.name
|
||||||
|
} must be of type string. Got ${typeof formDataField.payload} instead.`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const fileData = plugins.fs.readFileSync(
|
||||||
|
plugins.path.join(process.cwd(), formDataField.payload)
|
||||||
|
);
|
||||||
|
formDataArg.append('file', fileData, {
|
||||||
|
filename: formDataField.fileName ? formDataField.fileName : 'upload.pdf',
|
||||||
|
contentType: 'application/pdf',
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'Buffer':
|
||||||
|
formDataArg.append(formDataField.name, formDataField.payload, {
|
||||||
|
filename: formDataField.fileName ? formDataField.fileName : 'upload.pdf',
|
||||||
|
contentType: formDataField.contentType ? formDataField.contentType : 'application/pdf',
|
||||||
|
});
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -30,14 +52,46 @@ export const postFormData = async (
|
|||||||
for (const formField of payloadArg) {
|
for (const formField of payloadArg) {
|
||||||
await appendFormField(form, formField);
|
await appendFormField(form, formField);
|
||||||
}
|
}
|
||||||
const requestOptions = Object.assign({}, optionsArg, {
|
const requestOptions = {
|
||||||
|
...optionsArg,
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
...optionsArg.headers,
|
...optionsArg.headers,
|
||||||
...form.getHeaders()
|
...form.getHeaders(),
|
||||||
},
|
},
|
||||||
requestBody: form
|
requestBody: form,
|
||||||
});
|
};
|
||||||
|
|
||||||
|
// lets fire the actual request for sending the formdata
|
||||||
|
const response = await request(urlArg, requestOptions);
|
||||||
|
return response;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const postFormDataUrlEncoded = async (
|
||||||
|
urlArg: string,
|
||||||
|
optionsArg: interfaces.ISmartRequestOptions = {},
|
||||||
|
payloadArg: { key: string; content: string }[]
|
||||||
|
) => {
|
||||||
|
let resultString = '';
|
||||||
|
|
||||||
|
for (const keyContentPair of payloadArg) {
|
||||||
|
if (resultString) {
|
||||||
|
resultString += '&';
|
||||||
|
}
|
||||||
|
resultString += `${encodeURIComponent(keyContentPair.key)}=${encodeURIComponent(
|
||||||
|
keyContentPair.content
|
||||||
|
)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const requestOptions: interfaces.ISmartRequestOptions = {
|
||||||
|
...optionsArg,
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
...optionsArg.headers,
|
||||||
|
'content-type': 'application/x-www-form-urlencoded',
|
||||||
|
},
|
||||||
|
requestBody: resultString,
|
||||||
|
};
|
||||||
|
|
||||||
// lets fire the actual request for sending the formdata
|
// lets fire the actual request for sending the formdata
|
||||||
const response = await request(urlArg, requestOptions);
|
const response = await request(urlArg, requestOptions);
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
import * as plugins from './smartrequest.plugins';
|
import * as plugins from './smartrequest.plugins.js';
|
||||||
import * as https from 'https';
|
import * as https from 'https';
|
||||||
|
|
||||||
export interface ISmartRequestOptions extends https.RequestOptions {
|
export interface ISmartRequestOptions extends https.RequestOptions {
|
||||||
|
keepAlive?: boolean;
|
||||||
requestBody?: any;
|
requestBody?: any;
|
||||||
autoJsonParse?: boolean;
|
autoJsonParse?: boolean;
|
||||||
|
queryParams?: { [key: string]: string };
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// This file implements methods to get and post JSON in a simple manner.
|
// This file implements methods to get and post JSON in a simple manner.
|
||||||
|
|
||||||
import * as interfaces from './smartrequest.interfaces';
|
import * as interfaces from './smartrequest.interfaces.js';
|
||||||
import { request } from './smartrequest.request';
|
import { request } from './smartrequest.request.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gets Json and puts the right headers + handles response aggregation
|
* gets Json and puts the right headers + handles response aggregation
|
||||||
@ -14,7 +14,7 @@ export const getJson = async (
|
|||||||
) => {
|
) => {
|
||||||
optionsArg.method = 'GET';
|
optionsArg.method = 'GET';
|
||||||
optionsArg.headers = {
|
optionsArg.headers = {
|
||||||
...optionsArg.headers
|
...optionsArg.headers,
|
||||||
};
|
};
|
||||||
let response = await request(domainArg, optionsArg);
|
let response = await request(domainArg, optionsArg);
|
||||||
return response;
|
return response;
|
||||||
@ -37,7 +37,7 @@ export const postJson = async (
|
|||||||
// assign the right Content-Type, leaving all other headers in place
|
// assign the right Content-Type, leaving all other headers in place
|
||||||
optionsArg.headers = {
|
optionsArg.headers = {
|
||||||
...optionsArg.headers,
|
...optionsArg.headers,
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
let response = await request(domainArg, optionsArg);
|
let response = await request(domainArg, optionsArg);
|
||||||
|
@ -1,10 +1,19 @@
|
|||||||
import * as formData from 'form-data';
|
// node native scope
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as http from 'http';
|
import * as http from 'http';
|
||||||
import * as https from 'https';
|
import * as https from 'https';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as url from 'url';
|
|
||||||
|
|
||||||
|
export { http, https, fs, path };
|
||||||
|
|
||||||
|
// pushrocks scope
|
||||||
import * as smartpromise from '@pushrocks/smartpromise';
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
import * as smarturl from '@pushrocks/smarturl';
|
||||||
|
|
||||||
export { formData, http, https, fs, path, url, smartpromise };
|
export { smartpromise, smarturl };
|
||||||
|
|
||||||
|
// third party scope
|
||||||
|
import agentkeepalive from 'agentkeepalive';
|
||||||
|
import formData from 'form-data';
|
||||||
|
|
||||||
|
export { agentkeepalive, formData };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import * as plugins from './smartrequest.plugins';
|
import * as plugins from './smartrequest.plugins.js';
|
||||||
import * as interfaces from './smartrequest.interfaces';
|
import * as interfaces from './smartrequest.interfaces.js';
|
||||||
|
|
||||||
import { IncomingMessage } from 'http';
|
import { IncomingMessage } from 'http';
|
||||||
|
|
||||||
@ -50,54 +50,74 @@ const parseSocketPathAndRoute = (stringToParseArg: string) => {
|
|||||||
const result = parseRegex.exec(stringToParseArg);
|
const result = parseRegex.exec(stringToParseArg);
|
||||||
return {
|
return {
|
||||||
socketPath: result[1],
|
socketPath: result[1],
|
||||||
path: result[2]
|
path: result[2],
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* a custom http agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
* a custom http agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
||||||
*/
|
*/
|
||||||
const httpAgent = new plugins.http.Agent({
|
const httpAgent = new plugins.agentkeepalive({
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
keepAliveMsecs: 600000
|
maxFreeSockets: 10,
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* a custom http agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
||||||
|
*/
|
||||||
|
const httpAgentKeepAliveFalse = new plugins.https.Agent({
|
||||||
|
keepAlive: false
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* a custom https agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
* a custom https agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
||||||
*/
|
*/
|
||||||
const httpsAgent = new plugins.https.Agent({
|
const httpsAgent = new plugins.agentkeepalive.HttpsAgent({
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
keepAliveMsecs: 600000
|
maxFreeSockets: 10,
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* a custom https agent to make sure we can set custom keepAlive options for speedy subsequent calls
|
||||||
|
*/
|
||||||
|
const httpsAgentKeepAliveFalse = new plugins.agentkeepalive.HttpsAgent({
|
||||||
|
maxFreeSockets: 0,
|
||||||
|
keepAlive: false
|
||||||
});
|
});
|
||||||
|
|
||||||
export let request = async (
|
export let request = async (
|
||||||
domainArg: string,
|
urlArg: string,
|
||||||
optionsArg: interfaces.ISmartRequestOptions = {},
|
optionsArg: interfaces.ISmartRequestOptions = {},
|
||||||
streamArg: boolean = false
|
responseStreamArg: boolean = false,
|
||||||
|
requestDataFunc: (req: plugins.http.ClientRequest) => void = null
|
||||||
): Promise<IExtendedIncomingMessage> => {
|
): Promise<IExtendedIncomingMessage> => {
|
||||||
const done = plugins.smartpromise.defer<any>();
|
const done = plugins.smartpromise.defer<any>();
|
||||||
|
|
||||||
// merge options
|
// merge options
|
||||||
const defaultOptions: interfaces.ISmartRequestOptions = {
|
const defaultOptions: interfaces.ISmartRequestOptions = {
|
||||||
// agent: agent,
|
// agent: agent,
|
||||||
autoJsonParse: true
|
autoJsonParse: true,
|
||||||
|
keepAlive: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
optionsArg = {
|
optionsArg = {
|
||||||
...defaultOptions,
|
...defaultOptions,
|
||||||
...optionsArg
|
...optionsArg,
|
||||||
};
|
};
|
||||||
|
|
||||||
// parse url
|
// parse url
|
||||||
const parsedUrl = plugins.url.parse(domainArg);
|
const parsedUrl = plugins.smarturl.Smarturl.createFromUrl(urlArg, {
|
||||||
|
searchParams: optionsArg.queryParams || {},
|
||||||
|
});
|
||||||
optionsArg.hostname = parsedUrl.hostname;
|
optionsArg.hostname = parsedUrl.hostname;
|
||||||
if (parsedUrl.port) {
|
if (parsedUrl.port) {
|
||||||
optionsArg.port = parseInt(parsedUrl.port, 10);
|
optionsArg.port = parseInt(parsedUrl.port, 10);
|
||||||
}
|
}
|
||||||
optionsArg.path = parsedUrl.path;
|
optionsArg.path = parsedUrl.path;
|
||||||
|
optionsArg.queryParams = parsedUrl.searchParams;
|
||||||
|
|
||||||
// determine if unixsock
|
// determine if unixsock
|
||||||
if (testForUnixSock(domainArg)) {
|
if (testForUnixSock(urlArg)) {
|
||||||
const detailedUnixPath = parseSocketPathAndRoute(optionsArg.path);
|
const detailedUnixPath = parseSocketPathAndRoute(optionsArg.path);
|
||||||
optionsArg.socketPath = detailedUnixPath.socketPath;
|
optionsArg.socketPath = detailedUnixPath.socketPath;
|
||||||
optionsArg.path = detailedUnixPath.path;
|
optionsArg.path = detailedUnixPath.path;
|
||||||
@ -107,45 +127,30 @@ export let request = async (
|
|||||||
|
|
||||||
// lets determine the request module to use
|
// lets determine the request module to use
|
||||||
const requestModule = (() => {
|
const requestModule = (() => {
|
||||||
if (parsedUrl.protocol === 'https:') {
|
switch (true) {
|
||||||
optionsArg.agent = httpsAgent;
|
case parsedUrl.protocol === 'https' && optionsArg.keepAlive:
|
||||||
return plugins.https;
|
optionsArg.agent = httpsAgent;
|
||||||
} else if (parsedUrl.protocol === 'http:') {
|
return plugins.https;
|
||||||
optionsArg.agent = httpAgent;
|
case parsedUrl.protocol === 'https' && !optionsArg.keepAlive:
|
||||||
return plugins.http;
|
optionsArg.agent = httpsAgentKeepAliveFalse;
|
||||||
} else {
|
return plugins.https;
|
||||||
throw new Error(`unsupported protocol: ${parsedUrl.protocol}`);
|
case parsedUrl.protocol === 'http' && optionsArg.keepAlive:
|
||||||
|
optionsArg.agent = httpAgent;
|
||||||
|
return plugins.http;
|
||||||
|
case parsedUrl.protocol === 'http' && !optionsArg.keepAlive:
|
||||||
|
optionsArg.agent = httpAgentKeepAliveFalse;
|
||||||
|
return plugins.http;
|
||||||
}
|
}
|
||||||
})() as typeof plugins.https;
|
})() as typeof plugins.https;
|
||||||
|
|
||||||
// lets perform the actual request
|
if (!requestModule) {
|
||||||
const requestToFire = requestModule.request(optionsArg);
|
console.error(`The request to ${urlArg} is missing a viable protocol. Must be http or https`);
|
||||||
|
return;
|
||||||
// lets write the requestBody
|
|
||||||
if (optionsArg.requestBody) {
|
|
||||||
if (!(optionsArg.requestBody instanceof plugins.formData)) {
|
|
||||||
if (typeof optionsArg.requestBody !== 'string') {
|
|
||||||
optionsArg.requestBody = JSON.stringify(optionsArg.requestBody);
|
|
||||||
}
|
|
||||||
requestToFire.write(optionsArg.requestBody);
|
|
||||||
requestToFire.end();
|
|
||||||
} else if (optionsArg.requestBody instanceof plugins.formData) {
|
|
||||||
optionsArg.requestBody.pipe(requestToFire).on('finish', event => {
|
|
||||||
requestToFire.end();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
requestToFire.end();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// lets handle an error
|
// lets perform the actual request
|
||||||
requestToFire.on('error', e => {
|
const requestToFire = requestModule.request(optionsArg, async (response) => {
|
||||||
console.error(e);
|
if (responseStreamArg) {
|
||||||
});
|
|
||||||
|
|
||||||
// lets handle the response
|
|
||||||
requestToFire.on('response', async response => {
|
|
||||||
if (streamArg) {
|
|
||||||
done.resolve(response);
|
done.resolve(response);
|
||||||
} else {
|
} else {
|
||||||
const builtResponse = await buildUtf8Response(response, optionsArg.autoJsonParse);
|
const builtResponse = await buildUtf8Response(response, optionsArg.autoJsonParse);
|
||||||
@ -153,6 +158,30 @@ export let request = async (
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// lets write the requestBody
|
||||||
|
if (optionsArg.requestBody) {
|
||||||
|
if (optionsArg.requestBody instanceof plugins.formData) {
|
||||||
|
optionsArg.requestBody.pipe(requestToFire).on('finish', (event: any) => {
|
||||||
|
requestToFire.end();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
if (typeof optionsArg.requestBody !== 'string') {
|
||||||
|
optionsArg.requestBody = JSON.stringify(optionsArg.requestBody);
|
||||||
|
}
|
||||||
|
requestToFire.write(optionsArg.requestBody);
|
||||||
|
requestToFire.end();
|
||||||
|
}
|
||||||
|
} else if (requestDataFunc) {
|
||||||
|
requestDataFunc(requestToFire);
|
||||||
|
} else {
|
||||||
|
requestToFire.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
// lets handle an error
|
||||||
|
requestToFire.on('error', (e) => {
|
||||||
|
console.error(e);
|
||||||
|
});
|
||||||
|
|
||||||
const result = await done.promise;
|
const result = await done.promise;
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
10
tsconfig.json
Normal file
10
tsconfig.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ES2022",
|
||||||
|
"moduleResolution": "nodenext",
|
||||||
|
"esModuleInterop": true
|
||||||
|
}
|
||||||
|
}
|
17
tslint.json
17
tslint.json
@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
||||||
"rules": {
|
|
||||||
"semicolon": [true, "always"],
|
|
||||||
"no-console": false,
|
|
||||||
"ordered-imports": false,
|
|
||||||
"object-literal-sort-keys": false,
|
|
||||||
"member-ordering": {
|
|
||||||
"options":{
|
|
||||||
"order": [
|
|
||||||
"static-method"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultSeverity": "warning"
|
|
||||||
}
|
|
Reference in New Issue
Block a user