nodejs require inside TypeScript file

前端 未结 4 1795
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 18:23

How do I load a regular NodeJS module (from node_modules) from within a TypeScript class?

When I try to compile .ts file that

4条回答
  •  甜味超标
    2020-11-29 18:25

    Use typings to access node functions from TypeScript:

    typings install env~node --global
    

    If you don't have typings

提交回复
热议问题