Skip to content

Commit 384ef67

Browse files
committed
feat(serve-static): Added option serveStatic to allow proxy/snippet mode to easily serve local files
1 parent ec57fcf commit 384ef67

File tree

5 files changed

+59
-1
lines changed

5 files changed

+59
-1
lines changed

lib/async-tasks.js

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ module.exports = [
3737
step: "Starting the Server",
3838
fn: async.startServer
3939
},
40+
{
41+
step: "Adding serve static middlewares",
42+
fn: async.addServeStaticMiddleware
43+
},
4044
{
4145
step: "Starting the HTTPS Tunnel",
4246
fn: async.startTunnel

lib/async.js

+12
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,18 @@ module.exports = {
182182
}
183183
});
184184
},
185+
/**
186+
* @param bs
187+
* @param done
188+
*/
189+
addServeStaticMiddleware: function (bs, done) {
190+
bs.options
191+
.get("serveStatic")
192+
.forEach(function (dir) {
193+
bs.addMiddleware("*", utils.serveStatic(dir));
194+
});
195+
done();
196+
},
185197
/**
186198
* @param {BrowserSync} bs
187199
* @param {Function} done

lib/default-config.js

+6
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ module.exports = {
8787

8888
middleware: false,
8989

90+
/**
91+
* Add additional directories from which static
92+
* files should be served.
93+
*/
94+
serveStatic: [],
95+
9096
/**
9197
* Enable https for localhost development. **Note** - this is not needed for proxy
9298
* option as it will be inferred from your target url.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "browser-sync",
33
"description": "Live CSS Reload & Browser Syncing",
4-
"version": "2.7.13",
4+
"version": "2.8.0",
55
"homepage": "http://www.browsersync.io/",
66
"author": {
77
"name": "Shane Osbourne"
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
"use strict";
2+
3+
var browserSync = require("../../../index");
4+
5+
var request = require("supertest");
6+
var assert = require("chai").assert;
7+
var page = require("fs").readFileSync("test/fixtures/index.html", "utf-8");
8+
9+
describe("E2E `serveStatic` option", function () {
10+
11+
var bs;
12+
13+
before(function (done) {
14+
browserSync.reset();
15+
var config = {
16+
logLevel: "silent",
17+
online: false,
18+
serveStatic: ["test/fixtures"]
19+
};
20+
bs = browserSync(config, done).instance;
21+
});
22+
23+
after(function () {
24+
bs.cleanup();
25+
});
26+
27+
it("can serve static files regardless of running mode", function (done) {
28+
request(bs.server)
29+
.get("/index.html")
30+
.expect(200)
31+
.end(function (err, res) {
32+
assert.equal(res.text, page);
33+
done();
34+
});
35+
});
36+
});

0 commit comments

Comments
 (0)