gpt4 book ai didi

javascript - 如何在 Ubuntu 上从命令行运行这个 html-minifier?

转载 作者:行者123 更新时间:2023-12-03 02:25:14 25 4
gpt4 key购买 nike

我正在尝试运行 this来自 Ubuntu 命令行的 HTML 压缩器。但当我尝试这样做时出现错误。

NodeJS 和 NPM 安装良好:

root$ apt-get install -y nodejs npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
nodejs is already the newest version.
npm is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

安装 html-minifier 似乎有效:

root$ npm install html-minifier -g
npm http GET https://registry.npmjs.org/html-minifier
<... SNIP ...>
npm http 304 https://registry.npmjs.org/source-map
/usr/local/bin/html-minifier -> /usr/local/lib/node_modules/html-minifier/cli.js
html-minifier@3.5.9 /usr/local/lib/node_modules/html-minifier
├── commander@2.14.1
├── ncname@1.0.0 (xml-char-classes@1.0.0)
├── relateurl@0.2.7
├── he@1.1.1
├── param-case@2.1.1 (no-case@2.3.2)
├── camel-case@3.0.0 (upper-case@1.1.3, no-case@2.3.2)
├── clean-css@4.1.9 (source-map@0.5.7)
└── uglify-js@3.3.12 (source-map@0.6.1)

我可以看到 html-minifier 已安装:

root$ which html-minifier
/usr/local/bin/html-minifier

root$ head -5 /usr/local/bin/html-minifier
#!/usr/bin/env node
/**
* html-minifier CLI tool
*
* The MIT License (MIT)

但是当我尝试运行它时,出现以下错误:

root$ html-minifier
/usr/bin/env: node: No such file or directory

为什么我无法运行 html-minifier?我究竟做错了什么?我该如何解决它?

最佳答案

在 ubuntu 上,node 称为 nodejs。我可以看到两个选项

  1. 编辑文件“/usr/local/bin/html-minifier”并将 #!/usr/bin/env Node 更改为 #!/usr/bin/环境nodejs

  2. 添加一个小脚本node来为您启动nodejs,或者尝试alias node=nodejs

    <

关于javascript - 如何在 Ubuntu 上从命令行运行这个 html-minifier?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48981896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com