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.
我正在尝试从 Balloons (http://balloons.io) 开始构建一个应用程序,它使用 Backbone.js 和 express 来设置 UI。我从来没有使用过这些框架,而且我很难真正做出改变。
据我了解, .styl 文件被编译成 CSS 文件。我该如何做这个编译?
对于生产系统,您可以在部署之前使用手写笔可执行文件转换.styl为。.css就像这样做一样简单:
.styl
.css
stylus css --out stylesheet_dir
在您的.styl文件所在的文件夹中。
对于开发,您可以使用手写笔中间件即时转换文件。