HN user

thinknlive

4 karma
Posts0
Comments2
View on HN
No posts found.

sqlite 'all the things!'. Seriously. One of the best tools ever. So many data, and related performance challenges, in almost any app can be solved efficiently with this (for what it does) tiny little library.

// response : http response stream // filename : the static file we want to serve

response.writeHead(200 /, ...set http header info (mime, length etc).../ ); stream = fs.createReadStream( filename, { flags: 'r', start: start, end: end }); stream.pipe(response);