UNPKG

@serverless-stack/nextjs-lambda

Version:

Provides handlers that can be used in CloudFront Lambda@Edge to deploy next.js applications to the edge

12 lines (10 loc) 371 B
const tar = require('tar-stream') const fs = require('fs') const path = require('path') const pipeline = require('pump') // eequire('stream').pipeline fs.createReadStream('test.tar') .pipe(tar.extract()) .on('entry', function (header, stream, done) { console.log(header.name) pipeline(stream, fs.createWriteStream(path.join('/tmp', header.name)), done) })