
Product
Socket Now Available on Google Cloud Marketplace
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
@shelf/aws-lambda-brotli-unpacker
Advanced tools
Unpacks large Lambda binaries to /tmp, such as Tesseract, LibreOffice, Google Chrome, etc
Inspired by chrome-aws-lambda
Used in projects: aws-lambda-tesseract
$ yarn add @shelf/aws-lambda-brotli-unpacker
Version 1.x works with Node 10.x & 12.x only. For Node 8.10 use v0.0.2
Needs Docker installed.
$ npm test
Q: Why do I need this package?
A: It helps if you want to deploy pre-compiled software to use in Lambda. See list of projects where it is used above.
Q: Why bother?
A: Lambda environment has limited software installed. This package helps ship large binaries compiled for Lambda
which unpack to /tmp
folder when Lambda starts.
Q: Why
/tmp
?
A: Lambda has 500 MB of storage in /tmp
Q: Why brotli?
A: This compression algorithm is known for great speed/size ration. Perfect for scarce Lambda resources.
const {unpack} = require('@shelf/aws-lambda-brotli-unpacker');
const {execSync} = require('child_process');
const inputPath = path.join(__dirname, '..', 'bin', 'tt.tar.br'); // for example, tesseract
const outputPath = '/tmp/tesseract/tesseract';
module.exports.handler = async event => {
await unpack({inputPath, outputPath});
execSync(`${outputPath} -l eng image.png`);
};
$ git checkout master
$ yarn version
$ yarn publish
$ git push origin master --tags
MIT © Shelf
FAQs
Unpacks large Lambda binaries to /tmp
The npm package @shelf/aws-lambda-brotli-unpacker receives a total of 183 weekly downloads. As such, @shelf/aws-lambda-brotli-unpacker popularity was classified as not popular.
We found that @shelf/aws-lambda-brotli-unpacker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 54 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.