gpt4 book ai didi

html - 无 Jade express 发电机

转载 作者:IT老高 更新时间:2023-10-28 23:01:28 31 4
gpt4 key购买 nike

我正在尝试使用 express 生成器生成一个 express 骨架。所以应该是这样的:

$ npm install express-generator -g

但是,它添加了一堆自动 Jade 文件。

我想知道是否有办法摆脱那些 Jade 文件,只使用 html 和 express 生成器

谢谢!

最佳答案

尝试在命令提示符下运行此命令:

express --help

它会给你快速生成器帮助:

  Usage: express [options] [dir]

Options:

-h, --help output usage information
--version output the version number
-e, --ejs add ejs engine support
--hbs add handlebars engine support
--pug add pug engine support
-H, --hogan add hogan.js engine support
--no-view generate without view engine
-v, --view <engine> add view <engine> support (ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
-c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css)
--git add .gitignore
-f, --force force on non-empty directory

来源: https://expressjs.com/en/starter/generator.html

以上选项为您提供“ View 引擎”列表。

现在,只需输入:

express -{your choice view engine}


例如使用express -e:

这将设置 EJS引擎作为您的 View 处理程序并删除 Jade 。 EJS 具有 HTML 的外观和感觉,并增加了通过其模板系统注入(inject)值的能力。

关于html - 无 Jade express 发电机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30634054/

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