我也可以在客户端使用 Coffeescript 吗?
有没有办法在客户端使用CoffeeScript?
Is there any way to use CoffeeScript in client side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在客户端使用CoffeeScript?
Is there any way to use CoffeeScript in client side?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
有两种方法:
coffee- script.js
,它允许您在页面中放置不建议将后者用于生产用途,但这对或用于在线编辑器,如下所示:
请参阅相关问题: 有没有办法将 CoffeeScript 发送到客户端的浏览器并让它编译为 JavaScript *那里*?
There are two ways:
coffee-script.js
, which allows you to put<script type="text/coffeescript>
tags in your page.The latter isn't recommended for production use, but it's nice for development. Or for usage in online editors like these:
See the related question: Is there a way to send CoffeeScript to the client's browser and have it compiled to JavaScript *there*?
另请参阅 CoffeeScript 的 Webmake 插件 -> https://github.com/medikoo/webmake-coffee
它允许您以 Node.js 风格组织咖啡模块并将其捆绑到浏览器中。它提供源映射支持,因此您可以直接在浏览器中按原样调试 CoffeeScript 文件。
See also Webmake plugin for CoffeeScript -> https://github.com/medikoo/webmake-coffee
It allows you to organize coffee modules in Node.js style and bundle it for browser. It provides source maps support, so you can debug CoffeeScript files as they are, directly in a browser.
如果不想每次都编译,可以使用 -w 参数,coffee 会在每次文件更改时编译该文件
To not compile everytime you can use -w param and coffee will compile the file everytime file change
是的,可以通过将 CoffeeScript
src
标记添加到 html 页面的 head 部分来完成。从以下路径下载 CoffeeScript 源代码:http://coffeescript.org/extras/coffee-script。 js
复制并粘贴以下代码并尝试在浏览器中运行:
Yes, it can be done by adding a CoffeeScript
src
tag to the head section of your html page.Download the CoffeeScript source from this path: http://coffeescript.org/extras/coffee-script.js
Copy and paste the below code and try to run in a browser:
您还可以使用 CDN CoffeeScript 获得更好更快的性能。
或者
然后使用
type="text/coffeescript"
编译Coffee Script
。You can also use CDN coffeescript for better and faster performance.
or
Then use
type="text/coffeescript"
for compileCoffee Script
.