How to deploy simple express app from Github to Netlify

Hi @SkyuOfficial

There are a few issues here.

The build command is set to npm install && npm run build. The npm install part is not required as Netlify will automatically install dependencies from the package.json in the root of the repository.

Further, there is no build script in the package.json in the repository, and in the netlify.toml the functions directory is set to express which is a non-existent directory.

From looking at the dependencies, it seems you are trying to run an express app. I suggest reading over the following Support Guide to see why this won’t work (in the current form.)