Asad Memon

Results 44 comments of Asad Memon

I think I looked into this and as far I remember Zero needs to install node-sass which needs to `mkdir` some folders in global npm directory (which is owned by...

It's almost straightforward, this works: ```dockerfile FROM node:alpine # Install zero globally RUN apk update && apk upgrade && apk add --no-cache python RUN npm install --quiet --no-progress --unsafe-perm -g...

Yikes! I have fixed the yarn bug and pushed to npm. About Dockerfile, it looks like a recent update that may have broken this. I have updated the [Dockerfile instructions](https://github.com/remoteinterview/zero#running-with-docker)...

Thanks for looking into this! 500MB+ is not good at all. The alpine:node image should be 50MBish and zero should take around 60MB with all it's dependencies. I will take...

I was able to bring it down to 320mb using following Dockerfile. ```dockerfile FROM node:alpine # Install dependencies via apk, install zero globally, delete unnecessary deps RUN apk add --no-cache...

Thanks, I will make corrections and merge in a bit.

@Naaman-Saif That would be great. I have added basic HMR tests without puppeteer [here](https://github.com/remoteinterview/zero/blob/master/test/integration/hmr.js). It currently fetches SSR page again to see if zero sent the changed page. Adding puppeteer...

You are right. `python_modules` it is.

This is probably the most requested feature right now. Zero doesn't support it right now but it's in the plans for near future.

One way to solve this is to just export your express app: ```js // ./user.js const app = require('express')() var logOriginalUrl = function (req, res, next) { console.log('url', req.originalUrl) next()...