javascript - ImportRequire nodejs modules without @types in Typescript in 2018 - Stack Overflow

I have a typescript nodejs project for a website. I need to use functionality that is available in this

I have a typescript nodejs project for a website. I need to use functionality that is available in this specific nodejs module:

This module does not have a .d.ts file available in its repository, nor is there one available in the '@types' typescript repository. I do not require type definitions for this module, but typescript does not include it and produces errors.

No matter which way I try to import, I either get

TS2304: Cannot find name 'require'.

in the build console, or

TypeError: qs.escape is not a function

in the browser dev console.

Many responses here on StackOverflow suggest solutions that require repositories that are no longer available in 2018, or that might work but for me still produce the error

TypeError: qs.escape is not a function

What is the correct way to use/import/require/consume nodejs module functionality (without .d.ts definitions available) in typescript in 2018?

I have a typescript nodejs project for a website. I need to use functionality that is available in this specific nodejs module: https://www.npmjs./package/weather-js

This module does not have a .d.ts file available in its repository, nor is there one available in the '@types' typescript repository. I do not require type definitions for this module, but typescript does not include it and produces errors.

No matter which way I try to import, I either get

TS2304: Cannot find name 'require'.

in the build console, or

TypeError: qs.escape is not a function

in the browser dev console.

Many responses here on StackOverflow suggest solutions that require repositories that are no longer available in 2018, or that might work but for me still produce the error

TypeError: qs.escape is not a function

What is the correct way to use/import/require/consume nodejs module functionality (without .d.ts definitions available) in typescript in 2018?

Share Improve this question asked Jan 12, 2018 at 10:59 MarvosMarvos 2772 gold badges3 silver badges11 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You can add a dummy definition to allow it to import but without actually typing the module contents (although maybe if you should type them fully and submit to DefinitlyTyped so the everyone can benefit from type safety too!)

weather-js.d.ts

// declaring module will allow typescript to import the module
declare module 'weather-js' {
  // typing module default export as `any` will allow you to access its members without piler warning
  var weatherJs: any; 
  export default weatherJs;
}

yourCode.ts

import weather from 'weather-js'

weather.find({search: 'San Francisco, CA', degreeType: 'F'}, () => {})

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743625438a4480459.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信