Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

franz

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

franz

define a `lambda.config.js` file and call `lambda` or `lambda deploy`

  • 0.0.4
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

lambdapack

define a lambda.config.js file and call lambda or lambda deploy

Still in early stage!!

module.exports = {
  service: 'service_name', //used by serverless
  region: 'eu-central-1', //used by serverless
  bucket: 's3://your-bucket-name/folder', //S3 bucket to store your static assets

  variables: { //global environment variables for your lambda functions
    FOO: 'bar',
    BAR: process.env.BAR
  },

  functions: [
    './path/to/your/function', //with or without .js -> uses require() internally
  ],

  output: {
    path: 'dist/' //output directory
  },

  views: {
    path: './src/views/', //path with your handlebar templates
    helper: './src/views/helper/', //handlebar helpers dir
    layouts: './src/views/layouts/', //layouts dir
    client: { //entry files for global scripts
      base: './src/client.js'
    }
  },

  //assets directory
  assets: 'assets/'
}

FAQs

Package last updated on 26 Apr 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc