Unable to initialize library
- 主要语言
- TypeScript
- 星标
- 1.2k
- 派生
- 242
- PR 合并指标
- 30 天内没有已合并 PR
描述
The library is not getting instantiated, Created a basic node project and trying to instantiate the library. Does not work.
index.js
```js
const HTTPSnippet = require('httpsnippet').HTTPSnippet
const snippet = new HTTPSnippet({
method: 'GET',
url: 'http://mockbin.com/request',
});
const options = { indent: '\t' };
const output = snippet.convert('shell', 'curl', options);
console.log(output);
```
Package JSON
```json
{
"name": "http-code-generator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"httpsnippet": "^2.0.0"
}
}
```
Getting this below error
```
const snippet = new HTTPSnippet({
^
TypeError: HTTPSnippet is not a constructor
at Object. (/Users/cpandit/WebstormProjects/untitled1/index.js:6:17)
at Module._compile (node:internal/modules/cjs/loader:1103:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1157:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12)
at node:internal/main/run_main_module:17:47
➜ untitled1
```
贡献指南
调研方向
The reproduction is in index.js, with the dependency pinned in package.json to httpsnippet ^2.0.0. Start by running node index.js and checking the value exported by the package; done means the shown HTTPSnippet initialization succeeds and produces the requested curl output.
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, nodejs
- 领域
- devtools
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 45/100