async-genetic
A blazing fast and fully async genetic algorithm (by coin-unknown)
Nest
A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript 🚀 (by nestjs)
async-genetic | Nest | |
---|---|---|
1 | 358 | |
30 | 69,226 | |
- | 0.9% | |
0.0 | 9.9 | |
5 months ago | 7 days ago | |
TypeScript | TypeScript | |
- | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
async-genetic
Posts with mentions or reviews of async-genetic.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-06-17.
-
Profitable trading robots in JavaScript
The result is an async-genetic lib that meets all standards, and even began to work faster, not only in terms of code, but also in terms of problem solving. Due to additional settings, for example, it solves the "guess what word I have guessed" problem 2 times faster (on average).
Nest
Posts with mentions or reviews of Nest.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-02-09.
-
The Good, the Bad, and the OpenAPI: Why Developers Love and Hate It
In Action: A NestJS Example
-
Matanuska ADR 017 - Vitest, Vite, Grabthar, Oh My!
But what ultimately made me disillusioned was encountering bugs and odd behavior over time. For instance, I have a directory called ./test/helpers which contains helper modules for my tests. This is a convention I learned from Nest tests during my time at Procore. Tap absolutely refused to ignore this directory (which had no tests in it), regardless of my efforts to configure it thusly.
-
It's all about unit testing?
We need to start with a base application, let's say a nestjs application, with vertical slice architecture, where our application is mainly composed by: controller, service and a repository.
-
Why Does Everyone Forget Java and C# for Backend Development? Why Don’t Full-Stack Developers Learn Java and C#?
Trendy Frameworks – JavaScript frameworks like Next.js and NestJS dominate full-stack development, while Python leads in AI/ML.
-
The death of mocks by Testcontainers
Writing tests can often feel like a daunting task, especially when you find yourself juggling mocks for internal and external services. Flaky tests, unrealistic mocks, and the constant fear of “what if this breaks in production?” can make the process incredibly stressful. I recently had to write integration tests for a service built with NestJs and having to mock the database layer (repository) didn't sit right with me as it felt like I was testing a facade rather than the real thing. Now, don’t get me wrong—mocks are great and have their place in testing. But in this scenario, I wanted to ensure my code worked seamlessly in a production-like environment. So, I did what any developer would do: I reached out to my manager for advice. His suggestion? Testcontainers. It was a game-changer. With Testcontainers, I was able to spin up lightweight, disposable containers for services like PostgreSQL, Redis, and more—giving me a reliable, production-like testing environment right from my local machine. No more “living a lie” with overly simplistic mocks.
-
NestJS Fundamentals Part 1: Modularity in NestJS
When building scalable applications with NestJS, understanding its modular architecture is the first and most critical step. Modules are at the heart of every NestJS application, organizing your code into manageable, reusable, and maintainable components.
-
Custom builder for Angular: My way
In my project I also use TypeORM with plugin for NestJS. To do this I needed to add custom options for esbuild. I implemented a feature similar to custom-esbuild to allow users to add their own plugins to the build.
-
How to Create a quick Authentication library for NestJS/MongoDB application
If you are not familiar with NestJS, think it as the JavaScript framework that similar to what Spring for Java or what .NET for C#. (Pros, don't throw rocks at me 🥸). If you are a NodeJS developer that never excavated NestJS, give it a try. They have one of the best documentations (https://nestjs.com/) I have ever seen in my tiny developing life 👶.
-
Running PostgreSQL, MongoDB, and NestJS concurrently with Docker Compose
In this tutorial, we will look at how to use Docker-compose to run PostgreSQL and MongoDB services. Find out what PostgreSQL means. Visit their website to learn more about MongoDB. A NestJs server application will also be created, along with a server image and instructions on ways to add it as a service to our container. Visit NestJs here to learn more. We will also use API calls to communicate with the database containers.
-
Building a Production Stack: Docker, Meilisearch, NGINX & NestJS
Start by preparing your NestJS application.