DEV Community

Cover image for 7 Must-Try Open-Source Tools for Python and JavaScript Developers ๐Ÿš€
Arindam Majumder
Arindam Majumder Subscriber

Posted on

7 Must-Try Open-Source Tools for Python and JavaScript Developers ๐Ÿš€

Open-source tools are something almost every developer uses, whether while learning to code or building real-world apps.

Python recently became the most popular language on GitHub surpassing JavaScript. Now both are the top two programming languages in open source space.

In this article, Iโ€™ll share 7 open-source tools for Python and JavaScript developers that can help you build better projects.

Let's dive in!๐Ÿš€

GIF

You can use these tools in your projects or even contribute to them to make them better.


Crawlee - Build reliable crawlers

Crawlee

Crawlee is an open-source library for web scraping and browser automation. It supports HTTP requests and headless browser crawling with tools like Puppeteer and Playwright.

Its anti-blocking features, such as proxy rotation and browser fingerprinting, make it easier to avoid detection. Crawlee also scales automatically and supports TypeScript, making it reliable and efficient for tasks of any size.

Crawlee

The best part? Crawlee works seamlessly with both Node.js and Python. If a website requires JavaScript rendering, you can easily switch to a browser-based crawler. Later, if you discover a faster API for your needs, simply switch back to HTTP crawling without rewriting your project

To run Crawlee quick start, install Crawlee CLI with the necessary dependencies and boilerplate codes:

npx crawlee create my-crawler
Enter fullscreen mode Exit fullscreen mode

Crawlee comes with three main crawler classes: CheerioCrawler, PuppeteerCrawler and PlaywrightCrawler having same interface.

You can run Crawlee in your project by using:

npm install crawlee
Enter fullscreen mode Exit fullscreen mode

Letโ€™s take a look at example to โ€œCrawl all links on a websiteโ€ using Crawlee:

import { PlaywrightCrawler } from 'crawlee';

const crawler = new PlaywrightCrawler({
    async requestHandler({ request, enqueueLinks, log }) {
        log.info(request.url);
        // Add all links from page to RequestQueue
        await enqueueLinks();
    },
    maxRequestsPerCrawl: 10, // Limitation for only 10 requests (do not use if you want to crawl all links)
});

// Run the crawler with initial request
await crawler.run(['https://crawlee.dev']);
Enter fullscreen mode Exit fullscreen mode

This example uses the enqueueLinks() method to add new links to the RequestQueue as the crawler moves through pages. By removing the maxRequestsPerCrawl option, you can use it to find all URLs on a domain.

You can find more examples and resources to properly use Crawlee inside your project from its documentation.

They have 15k+ stars on GitHub, project is constantly evolving and improving.

Star Crawlee on GitHub โญ๏ธ


๐Ÿšจ Giveaway Alert! ๐Ÿšจ

Crawlee Giveaway

Crawlee is giving away 3 exclusive hoodies to the community.

  1. Click the button below to Star Crawlee on GitHub.
  2. Drop your GitHub username in the comments section of this article.

Thatโ€™s it!

Crawlee will select the lucky winners on December 31st, 2024.

Particiapate in the Giveaway


Marimo - Reactive notebook for Python

Marimo

Marimo is an open source Python-based notebook environment that makes working with data more interactive and intuitive. It supports both Python scripts and notebooks, allowing for seamless version control through Git.

Marimoโ€™s standout feature is its reactive UI, where changes in one part of the notebook automatically update other dependent parts, making it ideal for real-time data exploration.

It is easy to use with plenty of features for advanced users. For example, it can be used to create interactive tools like embedding visualizers.

Marimo

You can Quickstart Marimo by running this Installation command in terminal:

pip install marimo  # or conda install -c conda-forge marimo
marimo tutorial intro
Enter fullscreen mode Exit fullscreen mode

Create or edit notebooks with:

marimo edit
Enter fullscreen mode Exit fullscreen mode

Run apps:

marimo run your_notebook.py
Enter fullscreen mode Exit fullscreen mode

Best part, with Marimo:

  • Run Your Notebook as a Web App: Transform your notebook into an interactive web app, by keeping the Python code hidden.

  • Execute as Scripts: Run your notebook as a script directly from the command line.

  • Automatic Conversion: Convert Jupyter notebooks to marimo notebooks automatically using the CLI.

You can learn more about Marimo and find resources to properly use it in your next Python workflow through its documentation.

They have 8k+ stars on GitHub, and community is growing fast!

Star Marimo on GitHub โญ๏ธ


Deno - JavaScript runtime for the modern web

Deno

Deno is an open-source JavaScript runtime, designed to provide a modern and secure developer experience. Built on V8 and Rust, Deno is optimized for simplicity and security by default.

Install Deno on your Mac or Linux by running single command:

curl -fsSL https://deno.land/install.sh | sh
Enter fullscreen mode Exit fullscreen mode

For Windows, run this:

irm https://deno.land/install.ps1 | iex
Enter fullscreen mode Exit fullscreen mode

It also supports TypeScript natively and includes built-in tools for tasks like code linting, formatting, testing, and compiling into standalone executables.

Even though Deno is quite different from Node.js, it offers a Node.js compatibility layer, allowing you to run modern Node.js projects with minimal changes. You can also migrate from Node.js to Deno, making your code more simple and efficient.

Deno

Deno enforces a strict permission model, limiting access to files, networks, and environments unless explicitly granted. Its comprehensive APIs and minimal configuration make it a powerful choice for cloud and edge deployments, offering a scalable environment for building and running applications.

You can learn more about Deno and find resources to properly use it in your workflow through its documentation.

They have 98k+ stars on GitHub, and thousands of developers are using Deno!

dStar Deno on GitHub โญ๏ธ


Wasp - Faster full-stack web apps

Wasp

Wasp is an open source framework designed to streamline full-stack web development. You can easily built on top of React, Node.js, and Prisma via Wasp.

It simplifies the setup and orchestration of modern web apps by handling boilerplate code and configuration for you. With its simple config language, Wasp allows developers to focus on their app's core logic while automating repetitive tasks, making development faster and more efficient.

For Quick start Wasp, run this installation command on Linux / OSX / WSL (Windows):

curl -sSL https://get.wasp-lang.dev/installer.sh | sh
Enter fullscreen mode Exit fullscreen mode

Create new app:

wasp new
Enter fullscreen mode Exit fullscreen mode

Now, run the Wasp app:

cd <my-project-name>
wasp start
Enter fullscreen mode Exit fullscreen mode

You can easily see the full-stack web app at http://localhost:3000/

If you want to see how easily you can use Wasp for your next full-stack project, check out their tutorial here.

You can learn more about Wasp framework and find resources to properly use it in your workflow through its documentation.

They have 13k+ stars on GitHub, and have a good community support as well!

Star Wasp on GitHub โญ๏ธ


PydanticAI - Agent framework

PydanticAI

PydanticAI is a new agent framework designed to simplify Generative AI integrations into your production grade Python applications.

Some standout features:

  • Structured Output Validation: It ensures AI-generated outputs match predefined data schemas, minimizing unexpected results.

  • Dependency Management: Provides tools to easily manage and use dependencies, whether synchronous or asynchronous.

  • Model-agnostic: Supports various AI models like OpenAI's, Groq and Gemini, allowing seamless adaptation for different use cases

Building on the strengths of Pydantic and the validation layer of the OpenAI SDK, the Anthropic SDK, LangChain, LlamaIndex, AutoGPT, Transformers, CrewAI, Instructor and many more.

PydanticAI is available on PyPI, so you can install by running:

pip install pydantic-ai
Enter fullscreen mode Exit fullscreen mode

You can use it with optional Logfire integration or just install examples:

pip install 'pydantic-ai[examples]'
Enter fullscreen mode Exit fullscreen mode

These examples require you to set up authentication with LLMs and follow additional steps, find everything in this Doc.

PydanticAI is a new agent framework, and some features are still in beta. If youโ€™re planning to try it, you can get involved at an early stage.

You can learn more about PydanticAI agent framework and find resources to properly use it in your workflow through its documentation.

They have 1.3k+ stars on GitHub, and great backing of strong Pydantic community!

Star PydanticAI on GitHub โญ๏ธ


PocketBase - Backend in 1 file

PocketBase

PocketBase is an open source self-hosted backend solution designed for building full-stack applications with a focus on simplicity and portability.

It provides essential features like authentication, file storage, and real-time CRUD operations, all within a single server instance. Ideal for small to mid-sized applications such as mobile app backends and SaaS platforms.

Some great feature includes:

  • Support of multiple frontend stack like Svelte, Angular, react and others

  • Javascript and Dart SDK

  • Self Hosted

PocketBase was created to assist building self-contained applications. It's a great choice for projects that need a lightweight backend without the complexities of managing multiple services.

This project is completely open-source and maintained by volunteers without any funding. You can get involved or explore its features and implementation details from documentation.

They have 41k+ stars on GitHub, and maintained by part time contributors.

Star PocketBase on GitHub โญ๏ธ


KitOps - ML collaboration made easy

KitOps

KitOps is an open-source tool that redefines how data scientists, developers, and SREs collaborate on AI/ML models, datasets, and source code.

By leveraging Modelkit, a OCI (Open Container Initiative) standards packaging format, KitOps offers a unified approach to packaging, versioning, and deploying resources across diverse environments.

To use KitOps, you need to install Kit CLI and check version by running:

kit version
Enter fullscreen mode Exit fullscreen mode

Log in to OCI-compliant registries. Jozu Hub is the preferred choice for KitOps by running the following command:

kit login jozu.ml
Enter fullscreen mode Exit fullscreen mode

After login, pull a sample Modelkit from Jozu Hub and try it inside your workflow by running the following command:

kit unpack jozu.ml/jozu-quickstarts/fine-tuning:latest
Enter fullscreen mode Exit fullscreen mode

The unpack command will unpack the ModelKit contents to the current directory by default and you can play with it to find out more.

ModelKit

Key Features

  • OCI-Compliant Packaging: Package models, datasets, configurations, and code into ModelKits for streamlined versioning.

  • Registry Flexibility: Compatible with any OCI-compliant registry, ensuring seamless integration with existing AI/ML workflows.

  • YAML-Based Customization: Configure pipelines, fine-tune LLMs, and build RAG pipelines with intuitive YAML files.

The best part?

If you're a data scientist working on Python scripts in Jupyter Notebooks with a team of AI engineers building with LLM models, KitOps bridges the gap.

It enables seamless collaboration across teams, combining diverse workflows into a unified pipeline for maximum efficiency.

You can learn more about KitOps and find resources to properly use it in your workflow through its documentation.

They have 500+ stars on GitHub, and the community is growing!

Star KitOps on GitHub โญ๏ธ


Thatโ€™s it! I've tried to cover some helpful tools mainly focused on Python and JavaScript developers. If you know other awesome tools, write them down in the comments!

Hope you found this article useful. If so, feel free to share it with your developer friends!

Also, Follow me For More Content like this:

For Paid collaboration mail me at: arindammajumder2020@gmail.com.

Thank you for Reading!

GIF

Top comments (14)

Collapse
 
srbhr profile image
Saurabh Rai

Awesome list! SWIRL seems to be missing ๐Ÿ˜ข from the list!

Collapse
 
arindam_1729 profile image
Arindam Majumder

Thanks,
Oh yes Swirl is Amazing ๐Ÿคฉ

Collapse
 
komsenapati profile image
K Om Senapati
Collapse
 
arindam_1729 profile image
Arindam Majumder
Collapse
 
sammaji profile image
Samyabrata Maji

Starred the repo! Awesome project ๐Ÿ”ฅ

github.com/sammaji

Collapse
 
arindam_1729 profile image
Arindam Majumder

Great ๐Ÿ˜ƒ

All the best

Collapse
 
ddebajyati profile image
Debajyati Dey

Wow awesome!
Starred Crawlee!

Debajyati (Debajyati Dey) ยท GitHub

CSE student, Linux Enthusiast . Debajyati has 53 repositories available. Follow their code on GitHub.

favicon github.com
Collapse
 
arindam_1729 profile image
Arindam Majumder

Amazing

All the Best ๐Ÿ’ฏ

Collapse
 
subhro profile image
Subhradip Sinha • Edited

Great project ๐Ÿ”ฅ
github.com/dipsubhro

Collapse
 
arindam_1729 profile image
Arindam Majumder

Thanks!

All the Best for the Giveaway!

Collapse
 
soumyodeep_dey_c6cb5e8c97 profile image
SOUMYODEEP DEY • Edited
Collapse
 
devgancode profile image
Ganesh Patil

Awesome work Arindam! ๐Ÿ˜€

Collapse
 
priyankarpal profile image
Priyankar Pal

Good one ๐Ÿ‘ Starred the repository
github.com/priyankarpal

Collapse
 
kingshuk_999 profile image
Kingshuk Mondal • Edited

Amazing Article!๐Ÿ‘Œ
Detailed and Informative.
Starred the Crawlee project on GitHub.๐Ÿ˜Š

github.com/Kings-Mon