如何设置我的服务器以使用 Node 预编译 lessCSS?
我刚刚开始使用 lessCSS,我认为它很棒,但我更喜欢在服务器端运行它。我读过,node.js 是执行此操作的最佳方法,但我以前从未使用过它,而且老实说不知道如何设置它。
那么如何在我的服务器/站点上设置 node.js,并使其预编译我的 .less 文件?
I just started using lessCSS and I think its great, but I would prefer to run it server side. I've read that node.js is the best way to do this, but I have never used it before and honestly have no idea how to set it up.
So how can I setup node.js on my server / site, and make it precompile my .less file(s)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我写了一篇关于如何执行此操作的博客文章。当您尝试加载 styles.css 时,您会得到动态编译的 styles.less 文件
http://programming-perils.com/155/parse-less-files-on-the-fly-and-serve-them-as- css/抱歉页面已移至 此处。I wrote a blog post about how to do this. When you try to load styles.css you get the styles.less file compiled on the fly
http://programming-perils.com/155/parse-less-files-on-the-fly-and-serve-them-as-css/Sorry page was moved to here.看看 express。它允许您选择 CSS 编译器。
它也是一个很好的库,用于处理网站的路由和中间件。
express --css less
应该设置你的 less 编译器。Look at express. It allows you to select a CSS compiler.
It's also a good library for handling routing and middleware for a website.
express --css less
should set up your less compiler.