Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lukeed/sirv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.5
Choose a base ref
...
head repository: lukeed/sirv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Apr 15, 2019

  1. feat: handle ranged/partial requests!

    - References sveltejs/template#18
    - Closes #19
    lukeed committed Apr 15, 2019

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    135db55 View commit details
  2. v0.3.0

    lukeed committed Apr 15, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    a76c7b7 View commit details
Showing with 37 additions and 9 deletions.
  1. +1 −1 lerna.json
  2. +2 −2 packages/sirv-cli/package.json
  3. +33 −5 packages/sirv/index.js
  4. +1 −1 packages/sirv/package.json
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.8.0",
"version": "0.2.5",
"version": "0.3.0",
"npmClient": "yarn",
"packages": [
"packages/*"
4 changes: 2 additions & 2 deletions packages/sirv-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sirv-cli",
"version": "0.2.5",
"version": "0.3.0",
"description": "A lightweight CLI program to serve static sites~!",
"repository": "lukeed/sirv",
"license": "MIT",
@@ -24,7 +24,7 @@
"kleur": "^3.0.0",
"local-access": "^1.0.1",
"sade": "^1.4.0",
"sirv": "^0.2.5",
"sirv": "^0.3.0",
"tinydate": "^1.0.0"
}
}
38 changes: 33 additions & 5 deletions packages/sirv/index.js
Original file line number Diff line number Diff line change
@@ -47,6 +47,30 @@ function list(dir, fn, pre='') {
}
}

function send(req, res, file, stats, headers={}) {
let code=200, opts={};

if (req.headers.range) {
code = 206;
let [x, y] = req.headers.range.replace('bytes=', '').split('-');
let end = opts.end = parseInt(y, 10) || stats.size - 1;
let start = opts.start = parseInt(x, 10) || 0;

if (start >= stats.size || end >= stats.size) {
res.setHeader('Content-Range', `bytes */${stats.size}`);
res.statusCode = 416;
return res.end();
}

headers['Content-Range'] = `bytes ${start}-${end}/${stats.size}`;
headers['Content-Length'] = (end - start + 1);
headers['Accept-Ranges'] = 'bytes';
}

res.writeHead(code, headers);
fs.createReadStream(file, opts).pipe(res);
}

module.exports = function (dir, opts={}) {
dir = resolve(dir || '.');

@@ -55,12 +79,18 @@ module.exports = function (dir, opts={}) {

if (opts.dev) {
return function (req, res, next) {
let [start=0, end=Infinity] = (req.headers.range || '').replace('bytes=', '').split('-');
let uri = decodeURIComponent(req.path || req.pathname || parser(req).pathname);
let arr = uri.includes('.') ? [uri] : toAssume(uri, extensions);
let file = arr.map(x => join(dir, x)).find(fs.existsSync);
if (!file) return next ? next() : isNotFound(res);
res.setHeader('Content-Type', mime.getType(file));
fs.createReadStream(file).pipe(res);

let stats = fs.statSync(file);
send(req, res, file, stats, {
'Content-Type': mime.getType(file),
'Last-Modified': stats.mtime.toUTCString(),
'Content-Length': stats.size,
});
}
}

@@ -91,8 +121,6 @@ module.exports = function (dir, opts={}) {
if (!data) return next ? next() : isNotFound(res);

setHeaders(res, pathname, data.stats);
res.writeHead(200, data.headers);

fs.createReadStream(data.abs).pipe(res);
send(req, res, data.abs, data.stats, data.headers);
};
}
2 changes: 1 addition & 1 deletion packages/sirv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sirv",
"version": "0.2.5",
"version": "0.3.0",
"description": "The optimized & lightweight middleware for serving requests to static assets",
"repository": "lukeed/sirv",
"license": "MIT",