Systems | Development | Analytics | API | Testing

NodeJS

NodeSource featured as one of the top Cybersecurity Awareness Training Solutions by Cybernews

At NodeSource our mission is to help companies achieve significant time reductions in their processes, allowing them to be more efficient in the performance of their node.js applications. N|Solid is a product, APM —Application performance monitoring — that helps us detect improvement opportunities, detecting vulnerabilities and supporting security, among other amazing features. Something important to note is that we do our magic directly in production.

Highlights of OpenJS World 2022 - What's next in the OS ecosystem

A few days ago, we were in Texas attending one of the most important events in the Javascript ecosystem. For the first time after these difficult times, we had the opportunity to meet again in person with the main contributors and actors of the Javascript ecosystem on a global scale. The appointment was at OpenJS World 2022. We were really happy to meet again with friends from the OS and NodeJS community, seeing them again was priceless.

Build a Data Access Layer with PostgreSQL and Node.js

The Data Access Layer (DAL) is the most critical part of any application. This is where the code integrates with an external source of truth like a database. In this take, we'll show you how to build a DAL that talks to Postgres via Node. Then we'll go into best practices like Clean Architecture and what this means in practical terms. Ready? Let’s go! First, a quick note about the code: The code will have modern niceties like TypeScript, unit tests, and will tackle potential scalability issues.

The Challenges of Efficiently Maintaining Node.js Apps

Web applications are necessary to enhance the visibility of a business organization and help them achieve better ROI. Therefore, firms need to choose the right web development language to get the best results. Node.js has emerged as a leading programming language for developing web applications. But in hindsight, there are some complications that developers face with Node.js app maintenance.

Using N|Solid runtime from npm

At times, Node.js can feel like a black box. Shifting to an asynchronous programming model changes how developers are required to handle and interpret existing data. There are many solutions out there to help the users gain more visibility; however, it has been proved that all those solutions out there to capture such critical information come with a high toll on the performance of every application implementing them.

How to run `shell` and more using Node.js

Sometimes an application needs more than Node.js to develop and bootstrap itself. Maybe the project needs some automation from a different programming language than JavaScript; even in that scenario, Node.js can run those required tasks; with that, your whole application could be easier to maintain and won’t have a lot of technologies mixed in the same project.

Announcing Node V18 available in distributions

Providing developers and the Node ecosystem NodeSource Node.js Binary Distributions via.rpm, .deb as well as their setup and support scripts is one of our primary contributions to the community. Our binaries have been downloaded more than 100m times in the last year, powering applications across the globe.

Debugging a Node js Express API in VS Code Debugger

When we create software, we rarely do it without errors. API creation isn’t exempt from this fact, so sooner or later we’ll need to debug it. In JavaScript, the first stop for a debugging task is often logging to the console, but using a debugger can give us a more integrated experience. Node js is a cross platform and open source JavaScript runtime environment that allows the JavaScript to be run on the server-side.