gpt4 book ai didi

node.js - NodeJS + CoffeeScript,根据要求渲染 CoffeeScript 编译的 js

转载 作者:IT老高 更新时间:2023-10-28 22:07:30 24 4
gpt4 key购买 nike

我想做的是将以下内容添加到我已经在运行 CoffeeScript 编写的服务器

app.get '/test.js', (req, res) ->
render coffee somecoffeefile.coffee

NodeJS、Express 和 Coffeescript 可以实现类似的功能吗?

谢谢!

何塞

最佳答案

好消息:Connect(以及扩展 Connect 的 Express)已经作为插件提供!它没有很好的记录;事实上,在我被告知这样的东西已经存在之前,我自己也写过类似的东西(connect-coffee)。

以下是使用 Express 进行设置的方法:

# Notice the following code is coffescript
# You must add the parens for the app.use method to use in js
coffeeDir = __dirname + '/coffee'
publicDir = __dirname + '/public'
app.use express.compiler(src: coffeeDir, dest: publicDir, enable: ['coffeescript'])
app.use express.static(publicDir)

现在,当请求 http://yourapp/foo.js 时,如果您的 public 目录中不存在这样的文件,foo.coffee 将被自动编译,并且生成的 foo.js 将被提供。请注意,static compiler 之后设置是很重要的。

更新:从 Connect 1.7 开始,compiler 中间件已被删除。部分是因为这个,部分是为了提供更像 Rails 3.1 的体验,我创建了一个名为 connect-assets 的新中间件。 .用 npm 安装它,然后像这样设置它:

app.use require('connect-assets')(directory)

其中 directory 是 CoffeeScript 文件所在的文件夹(默认为 assets)。很简单,对吧?试试看,让我知道你的想法。

关于node.js - NodeJS + CoffeeScript,根据要求渲染 CoffeeScript 编译的 js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5195929/

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