Sam Hulick

Results 191 comments of Sam Hulick

I'm not familiar with Nitro at all, but will it let you define a several sets of CloudFormation stacks and deploy them? Along with Lambda funcs of course, and being...

Example structure of SST + Nuxt: ``` . ├── cdk.context.json ├── nuxt │   ├── app.vue │   ├── lambda.js -> .output/server/index.mjs │   ├── nuxt.config.ts │   ├── package.json │   ├── public │  ...

Further context: my back end (built with SST) is a highly complex set of stacks including S3 buckets, SQS queues, Lambda functions, Step Functions, and more. By bundling our Nuxt...

Well, the main cost savings is Nuxt having direct access to our database. But it would be sloppy to copy the necessary code from our back end to Nuxt and...

I noticed quite a few things are out of date, including the Serverless Framework dependency. I'm also not 100% sure if express is even needed at all. If @tonyfromundefined no...

Express's main job is to provide routing capabilities and set up a listener, right? API Gateway already does all that. By adding Express to the mix, it's just adding bloat.

@jamesladd I don't have time to get into details, but this is how you can load up Nuxt in Lambda without Express: ```js const { loadNuxt } = require('nuxt-start'); module.exports.render...

Oh, and this plugin for Serverless was incredibly helpful: https://github.com/wan2land/serverless-nuxt But I don't use their `createNuxtApp` which uses express.

Hey! [This article](https://kadira.io/academy/meteor-routing-guide/content/implementing-auth-logic-and-permissions) should prove to be useful.

This is semi-related, I think. I've added mousewheel support to allow scrolling the zoomview left/right. I have a branch in my fork and it's working perfectly. All it came down...