# Docker and nodejs development problem

## Overview

### Nodejs

Nodejs have couple of file to look at :

* package.json
    
* node\_modules
    

These file are the location of package that used at nodejs application

### Docker

**Docker is a platform designed to help developers build, share, and run modern applications** [https://hub.docker.com](https://hub.docker.com)

> I will not explain more here.

## Problem

### Development using docker

Usually we develop nodejs app using docker and use [Docker Volume](https://docs.docker.com/storage/volumes/) to able bind directory host to container directly, so we able to update and restart the app whenever we do development. But there is some problem, We actually can't do that because node\_modules \[at host\] are not sync with node\_modules \[at container\].

This is problem since many years, I as developer always face this problem every year. So I will wrap all resource here to make you easy to track all discussion.

### Report

> Is there a way that is not too impractical to Dockerize a Node.js app without mounting the node\_modules folder of your host machine to the container when developing ?
> 
> * [stackoverflow question by Ewaren](https://stackoverflow.com/q/59556554/11218747)
>     

Ewaren (the person who ask that) explain what we expect when using nodejs + docker, this is what he (also we as developer) expected :

1. able to setup dev environtment on new machine without do manually install
    
2. The app easy to run only use `docker compose up`
    
3. The runtime environtment is consistent across all machines.
    

Thanks to him, he explain so much and give some "good solution" to implement, but each solution have plus and minus. You can follow up some solution at [here](https://stackoverflow.com/q/59556554/11218747). Here is list of his solution.

1. mount all files to host folder and run `npm install` first before running the docker compose. This is classic solution, but we do not want this because not plassform-spesific.
    
2. mounta all files to host folder and mount `node_modules` container to anonymous volume. This will prevent node\_modules collide with host folder. But we have to re-build the container everytime package added.
    
3. mount all files to named volumes. This is clean, but we can't do development at host, but use [vscode container instead](https://code.visualstudio.com/docs/devcontainers/containers).
    

### Node docker repository

Finally !!, someone make template to easy to start !. [Node.js + Docker for Showing Good Defaults in Using Node.js with Docker](https://github.com/BretFisher/node-docker-good-defaults).

This repository have a lot feature !, **dev as close to prod as you can**, **edit locally while code runs in container**, **production-minded features**, and more.

They using *dirty solution*, but valid. They do different folder node\_modules. node\_modules container will saved in container at `/opt/node_app` and mount project folder host to `/opt/node_app/app` (sub folder). This make 2 different node\_modules, they claim we are still able to development and restart app like usual.

But, when I run it only using `docker compose up` (of course use `sudo` for linux). folder `node_modules` are empty !. I don't know what happen.

Someone have similar problem, [Bind mountings not working as expected #66](https://github.com/BretFisher/node-docker-good-defaults/issues/66).

[Bread Fisher have 2 solution](https://github.com/BretFisher/node-docker-good-defaults/issues/28#issuecomment-584895934). He also mention this from his [docker for node.js course](https://www.bretfisher.com/docker-mastery-for-nodejs/)

Solution 1:

* Don't move node\_modules up a directory. Leave everything in the standard single dir and do a single bind-mount in the compose file.
    
* Before doing a docker-compose up the first time, we'll need to do a docker-compose run npm install to see the node\_modules that are bind-mounted to the host. This is the main disadvantage of this Solution.
    
* This also means on macOS/Windows that you can't "dual develop" by sometimes using native host Node.js and sometimes using Docker-based Node.js because the binaries in node\_modules (if you have them) would be incompatible. This is a disadvantage if you don't always use docker to run this code.
    

Solution 2:

* Similar to this repo's setup, you would move node\_modules and package\*.json up a level in the file path, so they can be separated from host node\_modules. This adds complexity to the setup but also provides the flexibility of developing with a different node\_modules on the host than what is in the container.
    

Ok, there is no different with early solution that we found. Similar solution, only this solution that we can rely on.

So, basically you have to **Install the package on host manually**, to make package are sync with **container system**, we have to use `docker compose exec` or `docker compose run` to run the npm install.

```sh
## use exec when container already run
sudo docker compose exec node npm i

## use run before run container
sudo docker compose run node npm i
```

> You see `node` at that script, that refer to name of service in `docker-compose.yml` file.

He also mention at [other issue](https://github.com/BretFisher/node-docker-good-defaults/issues/91#issuecomment-1251597538)

```sh
docker compose exec -w /opt/node_app node npm install
```

## Conclusion

Not good ending.

There is no solid solution for node.js environtment to fit with our expectation, you have to choose some method and face the fate. You have to install the package first !.

Thanks.

[Original blog at dev.to](https://dev.to/riochndr/dx-bind-mounting-nodemodules-are-not-work-properly-4an7)
