npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kalarrs/serverless-local-dev-server

v1.2.1

Published

Develop Alexa-Skill and HTTP functions in Serverless without deploying to AWS

Downloads

36

Readme

Serverless Local Dev Server Plugin With Multi Project Support

Build Status

This is a fork of the Local Dev Server Plugin from DieProduktMacher/serverless-local-dev-server

This plugin exposes Alexa-Skill, Schedule, and HTTP events as local HTTP endpoints, removing the need to deploy every code change to AWS Lambda. You can connect these endpoints to Alexa, Facebook Messenger or other services via forwardhq, ngrok or any other forwarding service.

Supported features:

  • Expose alexa-skill, schedule, and http events as local HTTP endpoints
  • Environment variables
  • Basic HTTP integration

How To

1. Install the plugin

yarn add @kalarrs/serverless-local-dev-server --dev

2. Add the plugin to your serverless project configuration file

serverless.yml configuration example:

provider:
  name: aws
  runtime: nodejs8.10

functions:
  hello:
    handler: handler.hello
    events:
      - alexaSkill
      - http: GET /hello
      - schedule: rate(1 day)

# Add serverless-local-dev-server to your plugins:
plugins:
  - "@kalarrs/serverless-local-dev-server"

custom:
  # optional: add folder for serving static files (relative to service path)
  localDevStaticFolder: path/to/static/files
  # optional: set the port the server starts on
  localDevPort: 5000
  # optional: set the path name for schedule to be in local vs utc
  localDevScheduleShowLocalTime: true

3. Start the server

serverless local-dev-server

On default the server listens on port 5005. You can specify another one with the --port argument:

serverless local-dev-server --port 5000

You can also set the port in the serverless.yml

  localDevPort: 5000

To see responses returned from Lambda and stack traces, prepend SLS_DEBUG=*

SLS_DEBUG=* serverless local-http-server

4. For Alexa Skills

4.1 Share localhost with the internet

For example with forwardhq:

forward 5005

4.2 Configure AWS to use your HTTPS endpoint

In the Configuration pane, select HTTPS as service endpoint type and specify the forwarded endpoint URL.

As method for SSL Certificate validation select My development endpoint is a sub-domain of a domain that has a wildcard certificate from a certificate authority.

License & Credits

Licensed under the MIT license.