Are there any good resources you can recommend for learning Node? The documentation is a bit overwhelming.
On Nov 23, 10:26 pm, dtang85 <[email protected]> wrote: > Thanks! > > On Nov 23, 5:12 am, Poetro <[email protected]> wrote: > > > > > > > > > Forgot, that the end is already triggered, so the streaming is just > > the following: > > > if (pathname === '/style.css') { > > // Open a file stream to the file > > stream = fs.createReadStream('style.css'); > > response.writeHead(200, { > > 'Content-type': 'text/css; charset=utf-8' > > }); > > // Pipe the file stream to the response. > > stream.pipe(response); > > } > > > -- > > Poetro -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
