Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用快速生成器。运行生成器后,它输出以下内容:
install dependencies: $ cd . && npm install
有什么意义cd .?
cd .
这意味着你运行了这个:
$ express
(或可能express .)
express .
换句话说,您告诉express-generator在当前工作目录中创建一个项目。或者,您可以提供一个子目录名称:
express-generator
$ express foo
在这种情况下,它生成的命令行更有意义:
install dependencies: $ cd foo && npm install
PHP 中的标签(带有属性)