Luke Clifton

Results 20 comments of Luke Clifton

Hey @kbrissoGitHub / @froatsnook. You could use a Meteor App to create new products via the Shopify API (using this package, or others like it). But you would need some...

The `TypeError: Cannot read property 'webhookSubscriptions' of undefined` seems to happen when an invalid topic is passed to the `register` method. It would be great if this error could be...

I was hitting the same issue, until i realised that i was starting the auth flow using the `localhost:3000` URL and then the auth callback route was hitting my public...

@johnciprian Are you running your application and kicking off the oAuth flow using your ngrok URL? If you use something like `localhost:3000` to start the oAuth flow and then it...

Also getting the same issue. I can run `yarn install` successfully up till `v3.0.1` but updating to `v3.1.0` breaks. ``` error /node_modules/sqlite3: Command failed. Exit code: 1 Command: node-pre-gyp install...

I would be interested to know if typescript for this repo is in the pipeline? Would it make sense to use something like [NestJS](https://nestjs.com) for the server and continue to...

Yeah i see your point. Keeping it simple works for easy entry but i find that most commercial projects really benefit from a more opinionated framework with the normal required...

@nikolan I build the server with: `"build:server": "tsc --project tsconfig.server.json",` (package.json script) I use `tsc` for building and `ts-node` for development. The server has its own `tsconfig.json` file.

@jono-allen This repo looks great. Thanks for sharing. I have actually been working on a project which uses a similar approach using only NextJS and going serverless on Vercel. Seems...