Christian Howe

Results 21 comments of Christian Howe

I think I replied to you on my repository. I suggest converting the Atom language syntax (which is a simple CSON -> JSON conversion) and submitting a PR to this...

@ChrisZieba I ended up verifying the JWT in my connection handler as well to get the decoded data. Did you find a better solution?

No, I don't think so. Here's the doc string for `cider-boot-parameters`: "Params passed to boot to start an nREPL server via `cider-jack-in'."

I think this makes it slightly harder to transition a Tenzing project to have a backend. I know the intent is to start with frontend-only first, but once a backend...

I should note that this isn't how the bankai v9 beta works right now. It treats passing a path to the index.js file differently than passing a path to the...

> for (let post of posts) { > app.route(`/posts/${post.id}`, require('./views/post')) > } @s3ththompson The problem with this is the situation where new posts are added. You'd have to add a...

I figured out my issue with bankai. I was passing the directory that contained `index.js` instead of the path to `index.js` itself. My bad!

Hmm, I wasn't aware `jest` had `jsdom` support. I'll give it a try.

I tried testing using Jest and JSDom, and it works really well! To be honest, this just makes me crave a more lightweight solution even more, though. I think the...

Well, it may be. However, I ultimately would want something we could include with `create-choo-app` (or another `create-choo-` variant), which should probably be pretty lightweight to avoid putting too many...