12 Stories by Alex Merced
With concurrency in Rust, you can spawn child threads, pass data between threads using channels, or share state between threads using Arc and mutex.
With Serverless Next.js, we can easily deploy our application to a Serverless Architecture to maximize speed and scalability.
Some developers occasionally run into confusion about the differences between getInitialProps and getServerSideProps. In this article, we explore the differences with an example.
Explore gqlgen, which allows you to easily write GraphQL APIs using Go, and learn how to get started by building a simple to-do list...
Compare a few features of Remix, Next.js, and SvelteKit, ranging from initiating a project to adding styling.
Iterating through collections of information, passing data throughout your application, and working with props.children can be a complicated aspect of React.
Many Web 3.0 applications use distributed ledgers called blockchains to manage data. Others use methods like torrents or browser storage to offer decentralization.
IPFS has some admirable goals, but it's inaccessible for most users. See how to use Node.js to create a clearnet proxy to access IPFS...
Build a simple to-do list application with Masonite, a web framework for Python that uses an MVC model.
Explore ArangoDB, a multi-model database for documents, graphs, and key-values. Create database collections both from an online ArangoDB dashboard and Node.js drivers.
Create reusable components with Mitosis, a tool for compiling individual components to standard JavaScript and other frameworks like Angular, React, and Vue.
Improve your code by adding structs to your Rust application. Cover the fundamentals for instantiating structs in Rust.