0

假设我在 .npm 缓存中有这个:

lodash/
  1.2.4/
  1.3.3/
  2.11.2/

我想要做的是阅读 lodash 文件夹中的目录,看看是否有任何版本可以接受。

假设我正在寻找这个版本:

"lodash":"^2.11.1"

或者

"lodash":"~2.11.1"

如何将缓存中的版本与所需版本进行比较,以查看缓存中的版本是否满足要求?

这就是我现在所拥有的:

'use strict';

import semver = require('semver');
import async = require('async');
import * as cp from 'child_process';
import * as fs from 'fs';
import * as path from 'path';

export const cacheHas = function (getCacheLocation: string, dep: string, version: string, cb: any) {

  const dir = path.resolve(getCacheLocation + '/' + dep);

  fs.readdir(dir, function (err, items) {

    if (err) {
      return cb(err);
    }

    const matches = items.some(function (v) {
      return semver.eq(v, version);
    });

    return cb(null, matches);

  });

};

所以我只是在使用semver.eq()....所以我的问题是,除了 之外还有更好的调用semver.eq()吗?

4

1 回答 1

1

semver软件包具有satisfies完全执行此操作的功能:

semver.satisfies(v, version)

v您在缓存中的内容在哪里,是version您想要测试的范围是否v满足)

于 2018-06-13T21:51:14.010 回答