Eddie Xie

Results 26 comments of Eddie Xie

this is actually quite amazing. I tried it and it actually works :D Do you think it's feasible to add it into Guicey or a standalone example should be enough?...

nvm I thought I get it working in my test case...

Is it possible someone from MS could take a look?

``` Failed to compile. ./node_modules/acorn-loose/dist/acorn-loose.mjs Can't import the named export 'Node' from non EcmaScript module (only default export is available) ```

@kurenn Also curious to @janotterstetter 's question. Could you help us out please?

@kurenn Also seeing this. Would love to see the updates! I'm building a production backend following your tutorial

``` class Api::V1::RegistrationsController < Devise::RegistrationsController respond_to :json def create print 'in here' retailer = Retailer.new(retailers_params) if retailer.save render json: retailer, status: 201, location: [:api, retailer] else render json: {errors: retailer.errors},...