DEV Community

Discussion on: What is your current web development tech stack?

Collapse
 
richardj profile image
R☭

For my personal project, the simplest of the two (work stack is a lot bigger and diverse).

Backend:

  • Node
  • Express
  • Nginx
  • AWS and DigitalOcean (S3 buckets and droplet from digital ocean).
  • MongoDB + Mongoose

Frontend:

  • VueJS (2)
  • Vuex
  • Less
  • Wavesurfer.js library

Deployments happen through Github hook which is triggering a Netlify build when i merge a PR. This will build the frontend.

For the backend at the moment i have to ssh and do a git pull and restart the whole server with pm2.

It's okay, it is all still in Alpha and not public yet, so working on that in my spare time.

Collapse
 
iriskatastic profile image
Iren Korkishko

Thanks!