我正在使用 node.js 进行开发,而不是编写 css,而是想编写每当我刷新页面时自动编译的 SCSS 文件。
使用 NodeJS、Express 和 node-sass 时如何让 SASS 文件自动编译。
node-sass中的连接中间件已提取到node-sass-middleware中,请参阅此答案
在您的项目文件夹中运行:
$ npm install node-sass
假设您已经使用
$ express my_app
你app.js
应该看起来像这样:
var express = require('express'),
routes = require('./routes');
var app = module.exports = express.createServer();
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
....
以下是修改:
var express = require('express'),
routes = require('./routes'),
sass = require('node-sass'), // We're adding the node-sass module
path = require('path'); // Also loading the path module
var app = module.exports = express.createServer();
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
// notice that the following line has been removed
// app.use(express.static(__dirname + '/public'));
// adding the sass middleware
app.use(
sass.middleware({
src: __dirname + '/sass',
dest: __dirname + '/public',
debug: true,
})
);
// The static middleware must come after the sass middleware
app.use(express.static( path.join( __dirname, 'public' ) ) );
});
需要注意的是
app.use( sass.middleware ... );
必须先到
app.use( express.static ... )
原因是我们首先希望 sass 编译任何已更改的 sass 文件,然后才提供它们(由 完成express.static
)。
您必须重新启动您的应用程序才能使这些更改发生。
我们现在可以包含app.scss
在我们的/sass
文件夹中。但它还不会编译。sass 中间件只会编译应用程序请求的文件,因此我们必须在某处包含(要渲染的)css 文件,例如在 `/views/layout.jade' 中:
doctype html
html(lang="en")
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel="stylesheet", href="app.css") < we've added this
body!= body `/views/layout.jade`
请注意,与style.css
which 位于stylesheets
子文件夹下不同, 是app.css
从根目录读取的(在本例中为/public
)。
和
app.use(
sass.middleware({
src: __dirname + '/sass',
dest: __dirname + '/public',
debug: true,
})
);
第一次编译后,文件和文件夹层次结构将如下所示:
Project folder
app.js
public
app.css < This is where the compiled file goes
sytlesheets
style.css
sass
app.scss < This is where the sass file is
您可能希望将编译后的输出放在stylesheets
文件夹中,而不是public
一个;像这样:
Project folder
app.js
public
sytlesheets
app.css
style.css
sass
app.scss
这样,视图将链接到 css 文件,如下所示:
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel="stylesheet", href="/stylesheets/app.css")
但是,如果您将 sass 中间件配置更改为
app.use(
sass.middleware({
src: __dirname + '/sass',
dest: __dirname + '/public/stylesheets',
debug: true,
})
);
事情会变成梨形。
像这样链接到 css 文件时:
link(rel="stylesheet", href="stylesheets/app.css")
结果请求将是stylesheets/app.css
. 但是由于我们给 sass 中间件提供了以下配置:
src: __dirname + '/sass',
它会去寻找/sass/stylesheets/app.scss
,并且不存在这样的文件。
一种解决方案是保持配置不变,但将所有 sass 文件放在子文件夹 `/sass/stylesheets/. 但是有一个更好的解决方案。
如果您像这样定义前缀配置:
app.use(
sass.middleware({
src: __dirname + '/sass',
dest: __dirname + '/public/stylesheets',
prefix: '/stylesheets', // We've added prefix
})
);
它会告诉 sass 编译器请求文件总是带有前缀/stylesheets
并且这个前缀应该被忽略,因此对于 的请求/stylesheets/app.css
,sass 中间件将寻找文件/sass/app.scss
而不是/sass/stylesheets/app.scss
.
应用程序.js
var express = require('express'),
routes = require('./routes'),
sass = require('node-sass'),
path = require('path');
var app = module.exports = express.createServer();
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(
sass.middleware({
src: __dirname + '/sass',
dest: __dirname + '/public/stylesheets',
prefix: '/stylesheets',
debug: true,
})
);
app.use(express.static(path.join(__dirname, 'public')));
});
布局.jade
doctype html
html(lang="en")
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel="stylesheet", href="/stylesheets/app.css")
body!= body
文件夹和文件
Project folder
app.js
public
sytlesheets
app.css
style.css
sass
app.scss
来自node-sass的连接中间件已被提取到node-sass-middleware中。使用如下:
var fs = require('fs'),
path = require('path'),
express = require('express'),
sassMiddleware = require('node-sass-middleware')
var app = module.exports = express();
// adding the sass middleware
app.use(
sassMiddleware({
src: __dirname + '/sass',
dest: __dirname + '/src/css',
debug: true,
})
);
// The static middleware must come after the sass middleware
app.use(express.static(path.join(__dirname, 'public')));