@conneryn/feathersjs-serverless

0.3.5 • Public • Published

feathersjs-serverless

npm version Build Status

feathersjs connector to the Serverless framework ⚡️

Have you ever imagined building an application with feathersjs and deploying it using the Serverless Framework?

const feathers = require('@feathersjs/feathers')
const serverless = require('feathersjs-serverless')

const Todos = {
  find: async () => ([{
    description: 'Build a nice application'
  }, {
    description: 'Deploy it using Serverless'
  }])
}

const app = serverless(feathers())
  .use('todos', Todos)

module.exports.handler = app.handler()

/@conneryn/feathersjs-serverless/

    Package Sidebar

    Install

    npm i @conneryn/feathersjs-serverless

    Weekly Downloads

    3

    Version

    0.3.5

    License

    MIT

    Unpacked Size

    10.5 kB

    Total Files

    13

    Last publish

    Collaborators

    • conneryn