Nest: [Discussion] Who is using Nest in production?

Created on 26 Aug 2018  ·  178Comments  ·  Source: nestjs/nest

Most helpful comment

Thank you all for your answers so far! Besides, I'm getting a lot of DM with companies names. However, I can't share their names (yet?). Anyway, I'm really happy that Nest helped you to achieve your goals 🥇!

All 178 comments

Valor Software, ofc :)

https://komed-health.com
This was my comment: https://github.com/nestjs/nest/issues/359#issuecomment-360985822
:)

http://architectnow.net/

We’re using NestJs for two of our products right now. Boss’s loving it.

Ps: Our company is also giving a talk about NestJs at a local Angular Meetup: https://www.meetup.com/STL-Angular/events/253763850/

and also at a local Developer Conference called devUp: https://devupconf.org/

Thanks Kamil for the awesome framework! <3

https://adidas.github.io/

We use it as our backend to retrieve GitHub metadata and contents from our CMS.

Love its simplicity and TS 😍

@kamilmysliwiec As you know we use Nest in Gorrion Software House for some time now. Unfortunatelly we can't tell you the name of the project yet, but right now we are starting one that is kind of biggish (aprox. 800 mandays of work). This is the first one we've started with Nest 5 from scratch and its great :heart:

We use and love Nest at Yumpingo! https://www.yumpingo.com/

Day & Zimmermann for an internal management application via my freelance company: Also, I Code

Nest + MongoDB with an Angular UI.

Baltic Data Science for one of the world's biggest blockchain use case projects. @kamilmysliwiec kudos for the great work and the effort that You put in Nest.js 👍

At ProHabits.com, we've been using NestJS with @kamilmysliwiec 's support since day 1 of the project. NestJS is incredibly easy to work with and highly scalable. @kamilmysliwiec is a wonderful human with a lot of love for OSS, without him, our backend development at ProHabits would not have been easier.

Thank you all for your answers so far! Besides, I'm getting a lot of DM with companies names. However, I can't share their names (yet?). Anyway, I'm really happy that Nest helped you to achieve your goals 🥇!

We're using Nest at https://trellis.org with an Angular front-end. Love having a common language on the client-side and server-side.

Seconded @gregmagolan above. Lead dev here for Trellis. Really enjoying Nest so far, learn more about it everyday.

I'm using Nest in https://www.analytics-importer.cz project with Ionic front end. Thank you @kamilmysliwiec for hours of great time with NestJs. It is the best framework for node I've ever tried!

Currently using it for our AppWriter dictionary server at Wizkids
Been mentioning several times we should migrate completely to Nest, but well, that time will come 💃

We are using NestJS on our main product at Kerberus, in our Callcenter & PBX dashboard. Was tough to convince our team to migrate but they saw the advantages for code maintenance and clean architecture.

We are a start-up company from China and are currently using nest.js, we are working on a micro-service framework.

This is the GitHub address and I would like to have more people involved.
https://github.com/notadd/notadd

We are a serious gaming company from the Netherlands called Hulan. We started developing in NestJS around 6 months ago and are loving it! We've started 4 new projects using the framework and published 2 of them to production.

Hi, We have been using Nestjs for production since it released )
JSDaddy, Ukraine, Kharkiv )
https://github.com/JsDaddy
http://jsdaddy.io/

@kamilmysliwiec - think it may be useful to point people to update on https://github.com/juliandavidmr/awesome-nest ? The "awesome" style repos are a bit of an entry path to finding libs/usage, and notadd definitely belongs there @zuohuadong :)

HI!
We're using it at GenuineBee for some of our client's and also internal projects.
I'm actually putting together some case studies where I'm mentioning the tech-stack and Nest is mentioned... once published I'll send you the link in case you're interested ;)
Keep it up!!

We are using Nest.js 5.x for a few micro services at REWE Digital they assist in powering our platform.

Societe Generale (and especially the Investment Banking) is using NestJs for several internal services.

It would also be interesting to know a little bit about HOW it is being used. I’m thinking of using it for a traditional web application with server side rendering (templates, static content serving, etc) and I’m under the impression most people use it for APIs.

It would also be interesting to know a little bit about HOW it is being used.

In our case, it's mainly used as an API server indeed. We generally split our front-ends (VueJS / Angular / React) and our back-end.
Historically our back-ends were made only using Java / .Net / Python, but since we moved massively TypeScript for front-end developments, we decided to start using Nest last year.
I think the usage of NestJS will grow in the next months within our organization, and maybe its usage will not be limited to API server (for ex. for server-side rendering).

Running Nest at my company w/ Firestore Cloud Functions. Works really well for our use cases and I've definitely become an evangelist. You folks have an awesome product.

We at Agrofel are using it as the back-end for our Ionic apps; we're amazed how it was possible to develop everything, from top to bottom using Angular concepts.

Thanks and keep up with the excellent work!

I'm currently fighting tones of PHP services (and their developers) with my nestjs services which I'm using for a facebook chatbot to answer questions and a email service which emails customers an email once an order is purchased. All running on kubernetes!

Wi-Q

I also play with nest a lot in my spare time and use it to learn a lot more about typescript!

We at Pilvia are has started using Nest.js with Cloud Functions for Firebase. Really loving it!! :)

ps. planning to create Custom Microservice Transporter for Firebase Realtime Database to have global, zero config transport channel. Any documents available where to start? Thanks!

We have used nest.js for quiet a while, and it really help us a lot.

Our company website: https://www.bytedance.com/
We've developed TikTok, TopBuzz worldwide

Even we used ⚡NestJS⚡ as backend framework in our product https://votercircle.com

I develop some generators and classes to extend nest functionality, now in 10 minutes We have Resolvers, Gateways and Controllers Up and Running with security enhanced :) I love your work thank you

we are using NestJS for https://www.erento.com (company based in Berlin, Germany)

We are running several projects powered by Nest.js:heart: in SmartexLab

We are using NestJS at Kiddle

We are using NestJS in Enterprise internal system

Show...we adopt it for projects at http://www.adsoft.com.br/

@saminiemi how did you get main.ts dpeloyed successfully in cloud functions? I have the following

const server = express();

async function bootstrap(): Promise<INestApplication> {
  const app = await NestFactory.create(AppModule, server);
  return app.init();
}

bootstrap();

const api = functions.https.onRequest(server);

export { api };

However, I keep getting a 500 and "Error: could not handle the request" on all requests

@jkossis Here is how we handle it. TypeScript but basics are same:

import * as express from 'express';
const expressInstance = express();

NestFactory.create(AppModule, expressInstance)
.then(app => {
  app.enableCors();
  return app.init();
}).catch( err => console.error)

export const Api = functions.https.onRequest(expressInstance);

@saminiemi and I assume you are using node 8, rather than node 6 within Cloud Functions? I believe NestJs requires 8+

@jkossis Yes, node.js 8 runtime, and working it is flawless 👍

Just add this to package.json:

"engines": {
  "node": "8"
}

Speaking of cloud functions, has anyone figured out a way to get Firebase/Firestore Database Triggers working with Nest? I've resorted to having my triggers make HTTP calls to Nest via node-fetch.

Sorry to interrupt you, but this discussion is not related to the issue. Please move it to another issue, thanks! :)

Car sale company Automama for Microservices: https://automama.ru
❤️ NestJS

@kamilmysliwiec -> www.iflix.com.
We've started using nest for couple of new microservices, team is adopting the framework so now we are also migrating few older services to nestjs :).

We're using Nest with Vue http://codempire.io/
@kamilmysliwiec great job, thanks a million

We use NestJS at Roche Diagnostics International AG in Rotkreuz (CH), for two internal applications.

One of these applications is even open source:
https://github.com/Roche/lxdhub

Related: https://github.com/nestjs/docs.nestjs.com/pull/204

cc @lukasweber @erickeller

We are using NestJS for backend API, WS server and CLI scripts for our GitHub app LeanBoard, a collaborative whiteboard with sticky notes for GitHub issues.

https://app.leanboard.io/board/b91845ae-60df-411a-890c-a0b2253fe615
screenshot 2018-12-11 22 56 58

cc @br0wn

Use it for my Test Storage - test case management system, also use it at my full time work for gRPC microservices.

we are using nestjs with nest graphql at https://majipay.co.ke for all our backed prepay system, Nairobi, Kenya , Africa

Using nest for our GRPC based microservices.

Using Nest at EasyMetrics for gRPC microservices. 40+ services running in hundreds of containers every day :)

We use it for serving a static website, Angular app and API server for our invoicing SaaS: https://getapollo.io.

We (https://lonestone.consulting/en-UK/) are using it for almost all the backends we need to develop for our clients.
Sadly can't share the specific projects without consent, but you can use our logo :)

We (blueanchor.io) are using Nest for our products, our client and we love it. Now we plan to become a real Sponsor for your product in France. Talking about that by mail ;)

I just started to use nest in my new payment company. Last week i tried sails.js and didn't like it. After reading the documentation, the source code and some examples i'm kind of in love with Nest. It's modern, solid and testable. If our project succeed i will for sure sponsor. Keep up the great work and constantly improving the documentation with real world examples, not just simple stuff.

We are using it at budacode.com in pair with Angular and Ionic, and it is great. Mostly building App/PWA backends with it for various clients, some pretty big. Stumbled upon it around the end of December, 2017.

We are using Nest for microservices and graphql applications

Codengage 🚀

We use Nest to build TitleX, a conveyancing management system.

We use it along with serverless achitecture here at Prefeituras.net in Brazil

I'm developing a blog management system based on angular7+nest. And it's open source, but not finished now.I'm gonna put the link here when the project is done. It is expected to be six months later.

Awesome !
@Eve-1995 Are you Chinese ?

@Turkyden Obviously.

We are using Nest for the backend of our Open-Source On-Demand Commerce Platform (https://github.com/ever-co/ever) and we really LOVE it! Thank you for the great framework!

As of today using mostly for GraphQL & REST APIs, but we also experiment with CQRS, micro-services, etc.

We only recently started open-sourcing parts of the project ... (it's WIP)
So, every :star: on our Github repo is highly appreciated!

Thank you!!!

overview

❤️ ❤️ ❤️

Happily using it at Mobile Jazz, in concert with Angular and Ionic. Loving it so far!

Thanks for the great work done!

Just got launched https://frontendwatch.com which is built with Angular and Nest

We are making our version 2 of API of https://sofitview.com.br using Nest. Best choice ever made :heart:

We are using NestJS for a mobile game:
NestJs, Ionic, Elasticsearch, Passport-strava

https://runplayersleague.com/

RP-League is a mobile game of adventure and Running. Open to everyone. Beginner or confirmed. Just run to participate. Anywhere anytime. Follow the adventure and progress in the League to reach your best level.
Your sporting activity will be recognized and valued.
With run, fun and strategy, become Run Player One. (RP1).

Hi! We are using NestJS to powerup the backend of the Entrepot app. Home page is currently in French, translation in progress, but the app itself is in English.

Entrepot helps people archiving and finding their documents (especially contracts, invoices, tickets,...) fastly and easily.

We are using NestJs for all of our services. (We from korea. hehe)

https://www.makepagecall.com

@asantarissy I am unsure if its intentional or not, but every time i go to your site, it takes me to several different adware/malware infected pages everything from prompting me to download updates to chrome to download optimizer. @kamilmysliwiec if possible can we hide that particular thread until @asantarissy can resolve whatever is causing this to happen?

@asantarissy I am unsure if its intentional or not, but every time i go to your site, it takes me to several different adware/malware infected pages everything from prompting me to download updates to chrome to download optimizer. @kamilmysliwiec if possible can we hide that particular thread until @asantarissy can resolve whatever is causing this to happen?

Thank you @Destreyf, it seems that there is something wrong, I removed the link from my comment until it's solved.

Thanks again.

We are currently using Nest in the new Industrial Service Request internal portal and for other internal developments.

https://www.capgemini.com/

We are using nest in production for mobile API in https://big-bench.com :)

We are using nest in production https://hackages.io

We're using Nest in production for our server-side VueJS component renderer microservice at https://www.nos.nl 🥰

We use Nest.js for some time for each and every of our products 8)

IT.focus
https://itdotfocus.com

We are proud of using it and would love to be listed, here is the logo:
logo_IT_focus

We used Nestjs on some Fábrica de Aplicativos microservices, including running via AWS Lambda.

We are also using Nest for building the back-end for some of our web apps. This tool is awesome!
logo-top
Thanks for this masterpiece!
https://www.cosmicweb.ro/

We (SitePen, https://sitepen.com/ ) use Nest.js in production as the back-end for various customer enterprise applications with modern Dojo ( https://dojo.io/ ) on the front-end.

We are converting our NodeJS applications to NestJs and writing our new apps on NestJs(https://www.paraboly.com/)

from china company, www.zaixiakefu.com
building

We use nestjs to power a few of our microservices at www.getthread.io

We at Soramitsu use NestJS https://soramitsu.co.jp

We running Nest.js, an we are super happy: https://dashboard.kargomyanmar.com/order
I am looking forward to Nest.js's great future!

In my personal blog: https://sneakbug8.com

@kamilmysliwiec Great initiative to showcase companies that use NestJS in production. Would be nice to highlight the ones that have their code open source, so that people can get inspired by production grade code to get ideas on how to structure their own NestJS applications.

@bennyn great idea!

At this point in time, you can check awesome-nestjs#projects-using-nestjs or maybe you find some gems in the dependents network tab.

maybe you find some gems in the dependents network tab

Good idea. In addition to GitHub's dependency graph, there is also a list of npm packages depending on @nestjs/core which is another source for projects using NestJS. Unfortunately this list is unfiltered and cannot be sorted. 😶

We are launching our first Nest.JS GraphQL powered product in 2 days at https://allocloud.com, it rocks! :)

Chip! https://getchip.uk will be launching their first nestjs micro service soon!

https://www.grovehr.com -- it's coming soon (over 30 micro-services base on NestJS)

theiconic.com.au - We started to use it a few months ago, the whole development team has now taken a liking to it and new nodejs microservices are NestJS. Thanks for the such an awesome framework @kamilmysliwiec!

Chip is no longer using nestjs 😂😂😂😂 someone hire me!!!

@bashleigh why did they stop using it?

@scriptsure because they want to sack me 😂😂😂 only been here 3 weeks. They want to hire more developers so if you get a job offer. Run...

rosebayconsult.com We started using it recently

We use Nest at https://offset.earth and ❤it!

We at Telecom Technology Services, now acquired by Amdocs, are using NestJS in production in a project used all over North America!

I am glad to bring this blessing on TTS. Everyone is impressed here with the functionality it provides, and I've been teaching them more and more all the time.

Thanks to all who contributed to NestJS, you managed to make my life way easier <3 <3

We at Indshine are using NestJS in production in a microservices-based environment. We love the documentation and how easily it solves our problems and guides the implementation.

Thanks to all who contributed to NestJS, It's an architect's dream come true

Jemurai is using NestJS for our latest application which helps SMBs implement and operate a security program aligned with NIST 800-53—securityprogram.io. We have found it to be the best backend framework in the JS/TS community. Thanks to all involved and contributing to the project. I hope to be among them in the future!

I use and love Nest topflop.app. It's an open-source app, the repository link is available on the footer. It's currently a POC developed in a week (with hexagonal architecture <3).
I am co-founder of fairness, which is a french cooperative that supports its clients in the responsible design of web and mobile projects. We used NestJS. That's an awesome framework !

botminds AI is using the Nestjs. we recently rewrite our app to nestjs. and the migration is very easy for us. we love this framework so far. Angular and Nestjs are perfect combination for a company. Thanks for this awesome framework

We use Nest on for all of our core services! https://www.shellyapp.it/

We are using it over at https://milestonepay.com/
We are using an angular front end + serverless/lambda nest + postgres/RDS db layer at the moment via TypeOrm.

We are using nestjs at https://www.gainsight.com/. Thank you @kamilmysliwiec for the wonderful framework

We're using it at Sanofi for 2 internal apps which are currently in development and will be in production within a month. We'll soon be adding a third app using nest.js as it's become a standard part of our tech stack. Great framework and I love the ease of the GraphQL integration.

Thanks @kamilmysliwiec!

We at CosmoBors, a chatbot creation startup, are using NestJS for microservices and loving it!

We're using Nest at https://app.siteattention.com as a GraphQL API for our customer dashboard 😸
Been using Nest for years, so feels good finally deploying something into production 🙏

We at Techuz InfoWeb using NestJS in production. It's really great step in modern web technologies. Keep it up @kamilmysliwiec and thanks for having this amazing framework.🙌️

We are using nest for our mobile app at https://www.uniporter.com/. We've had a great experience so far with nest in production and want to thank @kamilmysliwiec for this great framework!

Eversports and Eversports Manager both use NestJs on several applications. Although there are still some quirks when using it with graphql we love it. Thanks a lot for all the effort @kamilmysliwiec . What a great framework!

I'm using Nest at https://unnue.com.

We use Nest at Khatabook. We were able to ship a large project within a month using NestJs. Thanks a ton! :)
https://khatabook.com/
Our App - https://play.google.com/store/apps/details?id=com.vaibhavkalpe.android.khatabook

I've been using nest for about a year: polyvinylrecords.com <3

We use NestJS in Autodesk, currently, for two services

We are using Nest at Radity https://radity.com and very happy with it.

We at Delimobil, leading car sharing service in Russia, use NestJS as BFF for our main website https://delimobil.ru

Decathlon Activities is actually using Nestjs for one of this API :-)

Ackroo inc. is using it for our Microservices backend

Hi! https://chessgrow.com using NestJS to some part of backend system! :)

As well as our use of nest.js for several projects at Sanofi, I'm also using it for the backend of my personal project: https://www.catkin.dev.

Just open sourced it on GitHub: https://github.com/mestrak/catkin. It's still an early version so I have a lot to do. Nest has been great to work with!

Backend NestJS
Frontend Gatsby
https://autoscar.com.br

At ramp.network we've been using Nest right from the start, both for our user-facing and blockchain-facing backends, and I've been very satisfied with it!
Frontend is running on React and MobX, of course also 100% typescript :muscle:

ramp-logo

@mikwerdna Check this repo out. Amazing api framework, with lots of tooling and helped me with TypeScript

We are using NestJS at Harmonize Health, https://harmonize.health/, it's an amazing framework!

We are beginning to use NestJS at Mediktiv, https://www.mediktiv.com, great framework. Thanks for the hard work

We are using NestJs at Pflegix (https://www.pflegix.de - a digital marketplace for caregivers and caretakers in Germany) now for 8 months in production. Typings and the using it together with Angular is awesome. Thank you guys and keep up with the good work!

pflegix_logo_small

I am using NestJs to build our new microservices
Great framework. Kudos for the hardwork

https://www.worthdaily.com
We use nestjs and mongodb serve our app apis and administration dashboard apis.
Thanks a lot for your great work :)

https://money.yandex.ru
We use nest for our new BFF platform.

We also using nest.
https://coinone.co.kr/plus/

We are using nest with GraphQL and Mongodb .
https://authing.cn/

We are using Nest with both MySQL and Postgres for lean REST API.
https://acidtango.com

Thanks for all the work to the NestJs team! 💪🏼

We are using Nest with MySQL , PostgreSQL and GraphQL

https://www.pirsquare.net

Thanks for awesome framework

Using the Nest masterpiece framework with Angular and MongoDB, too.

https://mlocks.com.br/

Keep the great job!

Best regards from Brazil,
Juliano.

I'm using nestjs for for an API on an MVP I've been working on https://purple-duck.co.uk

It's currently a monolith but I'll break out to microservices when I need to.

I'm using the glorious nestjs+angular combo for Team Fortress 2 pickup games: https://tf2pickup.pl/
Best wishes from Poland!

We're using Nest with Angular https://intelligo.systems/

We're using Nest with Angular https://sme-de.com

We are using Nest.js 👋: https://intellbits.com

We are using Nest.js in Dynatrace https://www.dynatrace.com/

@kamilmysliwiec
We at https://relevant.software/ are really loving it!

We are using Nest.js : https://kimixbond.com

We're using Nest w/ GraphQL https://www.alphaledger.com/

I know there are a bunch of teams at Pluralsight using Nest.js. https://www.pluralsight.com/

Everyone is loving it! Hopefully we can get some courses on there as well! Many teams come from a C# and java/spring background so most apps are using typescript and some form of DI. Having it built in to a framework has been amazing!

Hi! We are using NestJs on all our Microservices, connected to Symfony. We are in migration process. https://www.rindegastos.com/

As a premier fintech product in Nairobi, Kenya, we chose NestJS for all our backend microservices.
Coupled with the experience we have with Angular on the frontend, portability across the team is seamless.

The framework itself has given us wonderful time savings. Thanks a lot to the contributors and @kamilmysliwiec

https://orteo.co

Hi! We are using NestJs on some of our projects here at Shopback: https://www.shopback.com
Created a PR for this :)
https://github.com/nestjs/docs.nestjs.com/pull/1289

we have developed a open source rest server for easy API prototyping with nestjs.
its https://hithttp.com/

@kamilmysliwiec as you know we’re using NestJS in Sanofi IADC. Last week we open sourced whispr, which an event processing hub built using NestJS.

Repo is here: https://github.com/Sanofi-IADC/whispr
And the docs: https://sanofi-iadc.github.io/whispr/

We are prould to use NestJS in all of our projects for more then a year now.
We've used it in our free app to make helping each other easier - IHELPYOU.app ( https://www.dobreprogramy.pl/IHELPYOU.app-Pracujemy-dnie-i-noce.-Teraz-szukamy-spolecznosci-w-calej-Europie,News,106942.html )
We also use it successfully in few of our commercial apps for our Clients. And we teach others how to use it!

We really appreariate your work. And would love to be listed on the site.

Our URL is: https://itdotfocus.com
logo_IT_focus

http://sorotransit-dev.talis-technologies.com
First app using Nestjs, it is amazing

www.docred.com
First social network for physicians in Latin America.

any companies that scales to a minimum of 1M users?

we are using here at 'pi investimentos' https://www.invistacompi.com.br/s/ in some micro-services

Gremlify is also a proud user of Nestjs!
We provide an online sandbox for the Gremlin query language.
https://www.gremlify.com

I'm using it for a small non profit data website www.legalcases.co.il/

https://okane.capital

Liquidity provider from Chile

We use NestJs for backend microservices on Google Kubernetes.

Using it on SberCloud company website as backend for frontend - https://sbercloud.ru/
SberCloud is a subsidiary of the largest Russian bank

We started using nest at https://logo.com recently. We're loving it so far.

https://ciphertrace.com, so far it working great

https://padfever.com, works good for me.

We started using NestJS here at Gillz and adopted it as our main backend framework

We are using NestJS at DSI GROUP http://www.group-dsi.com/

We're using NestJS for all of our backend microservices here at newfront.com.

It's been great so far!

NestJS powers up our API at https://odeon.tv/.

Feel free to use our logo 😃 :
image

Up, when is planned is update page on-site?

@galek there's too many updates to this issue for us to take care of them all. If you'd like to be added to the docs "Who is using NestJS?" page you're more than welcome to make a Pull Request and we'll merge it as soon as we can.

We use NestJS for our service https://www.k-asap.com/en/ in Kaspersky Lab.

Used next on my previous project - https://sme-de.com for Accenture South Africa Enterprise Development Program.

We love Nestjs here at @AUIM Systems
Thanks for the great work @kamilmysliwiec and open source community!
much love!

Permacoop, open source and eco design ERP solution reserved for worker-owned business https://github.com/fairnesscoop/permacoop

Hi, We have been using Nestjs for production since it released , it is amazing ✌
https://www.dailycodingjob.com/

Not a full-fledged enterprise here, but using nest.js to create microservices and API gateway for a live programming competition.

p.s. it's awesome

Was this page helpful?
0 / 5 - 0 ratings

Related issues

thohoh picture thohoh  ·  3Comments

anyx picture anyx  ·  3Comments

JulianBiermann picture JulianBiermann  ·  3Comments

marshall007 picture marshall007  ·  3Comments

mishelashala picture mishelashala  ·  3Comments