292

I am having a hard time trying to get the lodash modules imported. I've setup my project using npm+gulp, and keep hitting the same wall. I've tried the regular lodash, but also lodash-es.

The lodash npm package: (has an index.js file in the package root folder)

import * as _ from 'lodash';    

Results in:

error TS2307: Cannot find module 'lodash'.

The lodash-es npm package: (has a default export in lodash.js i the package root folder)

import * as _ from 'lodash-es/lodash';

Results in:

error TS2307: Cannot find module 'lodash-es'.   

Both the gulp task and webstorm report the same issue.

Funny fact, this returns no error:

import 'lodash-es/lodash';

... but of course there is no "_" ...

My tsconfig.json file:

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "exclude": [
    "node_modules"
  ]
}

My gulpfile.js:

var gulp = require('gulp'),
    ts = require('gulp-typescript'),
    uglify = require('gulp-uglify'),
    sourcemaps = require('gulp-sourcemaps'),
    tsPath = 'app/**/*.ts';

gulp.task('ts', function () {
    var tscConfig = require('./tsconfig.json');
    
    gulp.src([tsPath])
        .pipe(sourcemaps.init())
        .pipe(ts(tscConfig.compilerOptions))
        .pipe(sourcemaps.write('./../js'));
});

gulp.task('watch', function() {
    gulp.watch([tsPath], ['ts']);
});

gulp.task('default', ['ts', 'watch']);

If I understood correctly, moduleResolution:'node' in my tsconfig should point the import statements to the node_modules folder, where lodash and lodash-es are installed. I've also tried lots of different ways to import: absolute paths, relative paths, but nothing seems to work. Any ideas?

If necessary I can provide a small zip file to illustrate the problem.

4

23 回答 23

483

以下是从 Typescript 2.0 开始执行此操作的方法:(不推荐使用 tsd 和 typings 以支持以下内容):

$ npm install --save lodash

# This is the new bit here: 
$ npm install --save-dev @types/lodash

然后,在您的 .ts 文件中:

任何一个:

import * as _ from "lodash";

或者(如@Naitik 建议的那样):

import _ from "lodash";

我不肯定有什么区别。我们使用并更喜欢第一种语法。然而,有些人报告说第一种语法对他们不起作用,还有人评论说后一种语法与延迟加载的 webpack 模块不兼容。YMMV。

2017 年 2 月 27 日编辑:

根据下面的@Koert,import * as _ from "lodash";是 Typescript 2.2.1、lodash 4.17.4 和 @types/lodash 4.14.53 的唯一有效语法。他说其他建议的导入语法给出了错误“没有默认导出”。

于 2016-08-29T15:30:36.770 回答
68

2016 年 9 月 26 日更新:

正如@Taytay 的回答所说,我们现在可以使用:而不是几个月前我们使用的“打字”安装:

npm install --save @types/lodash

以下是一些支持该答案的其他参考资料:

如果仍在使用类型安装,请参阅下面的评论(其他人)关于 '''--ambient''' 和 '''--global'''。

此外,在新的快速入门中,config 不再位于 index.html 中;它现在在 systemjs.config.ts 中(如果使用 SystemJS)。

原答案:

这适用于我的 Mac(在按照Quick Start安装 Angular 2 之后):

sudo npm install typings --global
npm install lodash --save 
typings install lodash --ambient --save

您会发现各种文件受到影响,例如

  • /typings/main.d.ts
  • /typings.json
  • /package.json

Angular 2 Quickstart 使用 System.js,所以我在 index.html 的配置中添加了“地图”,如下所示:

System.config({
    packages: {
      app: {
        format: 'register',
        defaultExtension: 'js'
      }
    },
    map: {
      lodash: 'node_modules/lodash/lodash.js'
    }
  });

然后在我的 .ts 代码中,我能够做到:

import _ from 'lodash';

console.log('lodash version:', _.VERSION);

2016 年年中的编辑:

正如@tibbus 提到的,在某些情况下,您需要:

import * as _ from 'lodash';

如果从angular2-seed开始,并且不想每次都导入,则可以跳过映射和导入步骤,只需取消注释 tools/config/project.config.ts 中的 lodash 行。

为了让我的测试使用 lodash,我还必须在 karma.conf.js 中的 files 数组中添加一行:

'node_modules/lodash/lodash.js',
于 2016-04-16T21:29:33.930 回答
27

第一件事

npm install --save lodash

npm install -D @types/lodash

加载完整的 lodash 库

//some_module_file.ts
// Load the full library...
import * as _ from 'lodash' 
// work with whatever lodash functions we want
_.debounce(...) // this is typesafe (as expected)

或者只加载我们要使用的函数

import * as debounce from 'lodash/debounce'
//work with the debounce function directly
debounce(...)   // this too is typesafe (as expected)


UPDATE - March 2017

我目前正在使用ES6 modules,最近我能够lodash像这样使用:

// the-module.js (IT SHOULD WORK WITH TYPESCRIPT - .ts AS WELL) 
// Load the full library...
import _ from 'lodash' 
// work with whatever lodash functions we want
_.debounce(...) // this is typesafe (as expected)
...

import具体lodash functionality

import debounce from 'lodash/debounce'
//work with the debounce function directly
debounce(...)   // this too is typesafe (as expected)
...

注意- 差异* as不是必需的syntax


参考:

在此处输入图像描述

祝你好运。

于 2016-11-19T05:40:20.733 回答
24

第 1 步:修改 package.json 文件以在依赖项中包含 lodash。

  "dependencies": {
"@angular/common":  "2.0.0-rc.1",
"@angular/compiler":  "2.0.0-rc.1",
"@angular/core":  "2.0.0-rc.1",
"@angular/http":  "2.0.0-rc.1",
"@angular/platform-browser":  "2.0.0-rc.1",
"@angular/platform-browser-dynamic":  "2.0.0-rc.1",
"@angular/router":  "2.0.0-rc.1",
"@angular/router-deprecated":  "2.0.0-rc.1",
"@angular/upgrade":  "2.0.0-rc.1",
"systemjs": "0.19.27",
"es6-shim": "^0.35.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"lodash":"^4.12.0",
"angular2-in-memory-web-api": "0.0.7",
"bootstrap": "^3.3.6"  }

第 2 步:我在 angular2 应用程序中使用 SystemJs 模块加载器。因此,我将修改 systemjs.config.js 文件以映射 lodash。

(function(global) {

// map tells the System loader where to look for things
var map = {
    'app':                        'app', // 'dist',
    'rxjs':                       'node_modules/rxjs',
    'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
    '@angular':                   'node_modules/@angular',
    'lodash':                    'node_modules/lodash'
};

// packages tells the System loader how to load when no filename and/or no extension
var packages = {
    'app':                        { main: 'main.js',  defaultExtension: 'js' },
    'rxjs':                       { defaultExtension: 'js' },
    'angular2-in-memory-web-api': { defaultExtension: 'js' },
    'lodash':                    {main:'index.js', defaultExtension:'js'}
};

var packageNames = [
    '@angular/common',
    '@angular/compiler',
    '@angular/core',
    '@angular/http',
    '@angular/platform-browser',
    '@angular/platform-browser-dynamic',
    '@angular/router',
    '@angular/router-deprecated',
    '@angular/testing',
    '@angular/upgrade',
];

// add package entries for angular packages in the form '@angular/common': { main: 'index.js', defaultExtension: 'js' }
packageNames.forEach(function(pkgName) {
    packages[pkgName] = { main: 'index.js', defaultExtension: 'js' };
});

var config = {
    map: map,
    packages: packages
}

// filterSystemConfig - index.html's chance to modify config before we register it.
if (global.filterSystemConfig) { global.filterSystemConfig(config); }

System.config(config);})(this);

第 3 步:现在执行 npm install

第 4 步:在文件中使用 lodash。

import * as _ from 'lodash';
let firstIndexOfElement=_.findIndex(array,criteria);
于 2016-05-16T10:35:50.643 回答
13

从 Typescript 2.0 开始,@types npm 模块用于导入类型。

# Implementation package (required to run)
$ npm install --save lodash

# Typescript Description
$ npm install --save @types/lodash 

现在,既然这个问题已经得到解答,我将介绍如何有效地导入 lodash

导入整个库的故障安全方式(在 main.ts 中)

import 'lodash';

这是这里的新内容:

使用您需要的功能实现更轻的 lodash

import chain from "lodash/chain";
import value from "lodash/value";
import map from "lodash/map";
import mixin from "lodash/mixin";
import _ from "lodash/wrapperLodash";

来源:https ://medium.com/making-internets/why-using-chain-is-a-mistake-9bc1f80d51ba#.kg6azugbd

PS:上面的文章是关于改进构建时间和减小应用程序大小的有趣读物

于 2016-10-13T08:10:04.060 回答
10

我使用以下命令在我的项目中成功导入了 lodash:

npm install lodash --save
typings install lodash --save

然后我通过以下方式导入它:

import * as _ from 'lodash';

在 systemjs.config.js 我定义了这个:

map: { 'lodash' : 'node_modules/lodash/lodash.js' }

于 2016-07-13T16:31:23.493 回答
8

我有完全相同的问题,但在 Angular2 应用程序中,这篇文章只是解决它:https ://medium.com/@s_eschweiler/using-external-libraries-with-angular-2-87e06db8e5d1#.p6gra5eli

文章摘要:

  1. 安装库npm install lodash --save
  2. 为 Lodash 添加 TypeScript 定义tsd install underscore
  3. 包括脚本<script src="node_modules/lodash/index.js"></script>
  4. 配置 SystemJSSystem.config({ paths: { lodash: './node_modules/lodash/index.js'
  5. 导入模块import * as _ from ‘lodash’;

我希望它对您的情况也有用

于 2016-02-29T19:57:40.470 回答
7

另一个优雅的解决方案是只获取你需要的东西,而不是导入所有的 lodash

import {forEach,merge} from "lodash";

然后在你的代码中使用它

forEach({'a':2,'b':3}, (v,k) => {
   console.log(k);
})
于 2016-12-22T09:16:21.620 回答
4

如果其他人遇到此问题,并且由于“重复标识符”问题,上述解决方案均无效,请运行以下命令:

npm install typings --global

对于旧版本的类型,事情会变得一团糟,你会遇到一堆“重复标识符”问题。--ambient据我所知,你也不需要再使用了。

因此,一旦类型是最新的,这应该可以工作(使用 Angular 2 快速入门)。

跑:

npm install lodash --save 
typings install lodash --save

首先,将其添加到 systemjs.config.js:

'lodash':                     'node_modules/lodash/lodash.js'

现在您可以在任何文件中使用它:import * as _ from 'lodash';

npm install如果您仍然遇到问题,请删除您的打字文件夹并运行。

于 2016-08-17T14:49:16.863 回答
4

lodash的部分导入应该使用以下符号在angular 4.1.x中工作:

let assign = require('lodash/assign');

或者使用'lodash-es'并在模块中导入:

import { assign } from 'lodash-es';
于 2017-05-23T07:25:06.040 回答
4

请注意,这npm install --save将促进您的应用在生产代码中所需的任何依赖。
至于“打字”,只有 TypeScript 需要,最终转译成 JavaScript。因此,您可能不希望将它们包含在生产代码中。我建议把它放在你的项目中devDependencies,通过使用

npm install --save-dev @types/lodash

或者

npm install -D @types/lodash

(例如,参见 Akash 帖子)。顺便说一句,这是在 ng2 tuto 中完成的方式。

或者,您的 package.json 可能如下所示:

{
    "name": "my-project-name",
    "version": "my-project-version",
    "scripts": {whatever scripts you need: start, lite, ...},
    // here comes the interesting part
    "dependencies": {
       "lodash": "^4.17.2"
    }
    "devDependencies": {
        "@types/lodash": "^4.14.40"
    }
}

只是一个小费

好处npm是您可以从简单地开始,npm install --save或者--save-dev如果您不确定要查找的依赖项的最新可用版本,它会自动为您设置它以供您package.json进一步使用。

于 2016-11-22T22:26:36.123 回答
3

我也为它创建了类型lodash-es,所以现在您实际上可以执行以下操作

安装

npm install lodash-es -S
npm install @types/lodash-es -D

用法

import kebabCase from "lodash-es/kebabCase";
const wings = kebabCase("chickenWings");

如果您使用汇总,我建议使用它而不是,lodash因为它将正确地进行 treeshaken。

于 2017-01-05T22:11:38.610 回答
2

通过安装npm

$ npm install lodash --save

现在,import在文件中:

$ import * as _ from 'lodash';

环境:

Angular CLI:1.6.6
节点:6.11.2
操作系统:darwin x64
Angular:5.2.2 typescript
:2.4.2
webpack:3.10.0

于 2018-02-12T05:19:34.057 回答
1

npm install --save @types/lodash

https://www.npmjs.com/package/@types/lodash

于 2019-10-12T21:04:25.090 回答
1
  1. 安装 lodash

sudo npm install typings --global npm install lodash --save typings install lodash --ambient --save

  1. 在 index.html 中,为 lodash 添加地图:

System.config({ packages: { app: { format: 'register', defaultExtension: 'js' } }, map: { lodash: 'node_modules/lodash/index.js' } });

  1. 在 .ts 代码中导入 lodash 模块

import _ from 'lodash';

于 2016-04-24T21:49:29.250 回答
1

管理类型 viatypingstsdcommands 最终被弃用,取而代之的是使用 npm via npm install @types/lodash

但是,我很长时间都在 import 语句中为“找不到模块 lodash”而苦苦挣扎:

import * as _ from 'lodash';

最终我意识到 Typescript 只会从 node_modules/@types 开始版本 2 加载类型,而我的 VsCode 语言服务仍在使用 1.8,所以编辑器报告错误。

如果您使用的是 VSCode,则需要包含

"typescript.tsdk":  "node_modules/typescript/lib"

在您的 VSCode settings.json 文件中(用于工作区设置)并确保您通过安装 typescript version >= 2.0.0npm install typescript@2.0.2 --save-dev

在那之后,我的编辑不会抱怨导入语句。

于 2016-09-18T23:09:38.293 回答
1

我将 ng2 与 webpack 一起使用,而不是系统 JS。我需要的步骤是:

npm install underscore --save
typings install dt~underscore --global --save

然后在我希望将下划线导入的文件中:

import * as _ from 'underscore';
于 2016-06-16T10:35:10.247 回答
1

如果之后不工作

$ npm install lodash --save 
$ npm install --save-dev @types/lodash

你试试这个并导入 lodash

typings install lodash --save
于 2017-08-02T11:12:28.300 回答
0

通过终端安装所有:

npm install lodash --save
tsd install lodash --save

在 index.html 中添加路径

<script>
    System.config({
        packages: {
            app: {
                format: 'register',
                defaultExtension: 'js'
            }
        },
        paths: {
            lodash: './node_modules/lodash/lodash.js'
        }
    });
    System.import('app/init').then(null, console.error.bind(console));
</script>

在 .ts 文件顶部导入 lodash

import * as _ from 'lodash'
于 2016-03-05T21:40:06.500 回答
0

也许这太奇怪了,但以上都没有帮助我,首先,因为我已经正确安装了 lodash(也通过上述建议重新安装)。

长话短说,这个问题与使用lodash_.has的方法有关。

我通过简单地使用 JS 运算符来修复它in

于 2018-06-15T16:23:10.300 回答
0

我在 Angular 4.0.0 上使用preboot/angular-webpack,不得不走一条稍微不同的路线。

@Taytay 提供的解决方案主要对我有用:

npm install --save lodash
npm install --save @types/lodash

并使用以下方法将函数导入给定的.component.ts文件:

import * as _ from "lodash";

这是有效的,因为没有“默认”导出类。我的不同之处在于我需要找到加载到 3rd 方库中的方式:vendor.ts,它位于:

src/vendor.ts

我的vendor.ts文件现在看起来像这样:

import '@angular/platform-browser';
import '@angular/platform-browser-dynamic';
import '@angular/core';
import '@angular/common';
import '@angular/http';
import '@angular/router';

import 'rxjs';
import 'lodash';

// Other vendors for example jQuery, Lodash or Bootstrap
// You can import js, ts, css, sass, ...
于 2017-05-06T02:28:49.293 回答
-1

您也可以继续通过良好的旧要求导入,即:

const _get: any = require('lodash.get');

这是唯一对我们有用的东西。当然,请确保任何 require() 调用都在导入之后进行。

于 2018-06-01T04:42:49.800 回答
-1

试试>>tsd install lodash --save

于 2016-02-19T05:00:46.047 回答