• $300 in Free Credit Towards Top Cloud Services Icon
    $300 in Free Credit Towards Top Cloud Services

    Build VMs, containers, AI, databases, storage—all in one place.

    Start your project in minutes. After credits run out, 20+ products include free monthly usage. Only pay when you're ready to scale.
    Get Started
  • Full-stack observability with actually useful AI | Grafana Cloud Icon
    Full-stack observability with actually useful AI | Grafana Cloud

    Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.

    Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
    Create free account
  • 1
    The Neverwinter Nights Filesystem attaches itself to your servervault folder and intercepts file I/O requests (like a virus scanner does), routing the Fields into and out of an SQL database. Result: full read write access to your servervault using SQL!
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    NWrapper was built to be a quick wrapper for storing and executing multiple NMap commands (using SQLite), but it can do a lot more. Also, it was a way for me to start learning C (hence the lack of data structures or anything fancy).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    NaWui stands for Nagios Administration Web User Interface.<br> It is a Web frontend written in PHP to manage Nagios configurations and Database records. Database connectivity is supported using plugins, which simplifies the way records are stored.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Nailer is a tool written in PHP intended to handle the management contents of MySQL over the WWW.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Go From AI Idea to AI App Fast Icon
    Go From AI Idea to AI App Fast

    One platform to build, fine-tune, and deploy ML models. No MLOps team required.

    Access Gemini 3 and 200+ models. Build chatbots, agents, or custom models with built-in monitoring and scaling.
    Try Free
  • 5
    Club Database Management Software
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    NantGUI is a graphical interface to nant.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    Narya is a forum/incubator software, based on a Python/Zope/MySQL platform. Emphasis on graphics support and collaboration for space and technology development. Compare PHP/MySQL forums.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Nautilus is a tool for developers who work with MS SQL Server databases. Whether you want to locate tables or rows, generate scripts (create table, insert), folow data links, build "select-from-join" querys or analyze data, Nautilus is for you.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    NecJGui is an antennas design tool, interface for Numerical Electromagnetic Code. It allows easily making NEC input files, and viewing them in 3D. It also contains a version of the simulator, so it's complete IDE for full-wave EM simulation.
    Downloads: 0 This Week
    Last Update:
    See Project
  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • 10
    Negis stands for next generation information system and will eventually allow the user to manage and retrieve all data found on the computer based on projects in an efficient and easy way.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    NesSPHP is an easy to use PHP-class which helps you to work with nested sets. Just provide information like for the db-connection and table-name and you are ready to start.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    Net::FreeDB - an interface to the freedb cddb database for Perl
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    The NetEpi project is developing open-source, network-enabled tools for epidemiology and public health practice.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14

    NetMPD

    Free your fundraising

    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    NetSite Navigator gives you control over all your web content inside oracle apex database. Easily update the text and images of any web page on your site. No longer do you have to wait on you web site to be updated, with this easy to use software.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    NetTraveler
    A database middleware system for WANs that can efficiently run queries over sites that are either mobile clients or enterprise servers, taking into consideration the nature of hosts for query processing purposes.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Netautor Professional is an application server with integrated development environment, based on PHP. It comes with all substantial features to simplify the programming and the operation of databased Intra- and Internet web applications.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Network tools to aid in the management of nodes on a network
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    The Netjuke is a Web-Based Audio Streaming Jukebox powered by PHP 4, a database and all the MP3, Ogg Vorbis and other format files that constitute your digital music collection. Supports images, language packs, multi-level security, random playlists, etc
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    NHibernate Query Analyzer is a tool to help developer understand NHibernate. This tool allows you to view the results from NHibernate both in their raw format from the DB and object graphs returned from NHibernate.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    Development tool for database based application creation.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    No MS Access Licence - No problem, create/view access Databases/Tables
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Very, really *very* small, No-POJO SQL database controller library.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24

    Nodejs MySQL Query Builder

    A small lib that builds query using mysql and nodejs

    This is a small mysql query builder using the nodejs mysql driver by felixge. Sample Usage: ```js var query_builder = require('query_builder'); var dbconn_default = { host : 'host', user : 'user', pass : 'password', dbase : 'database_schema' }; var qb = new query_builder( dbconn_default ); var select_details = { table : 'table_name', fields : [ 'field1', 'field2', ... ], conditions : { field1 : 'value1', field2 : 'value2' } }; qb.select( select_details, function( err, rows ){ if( err ) console.log( err ); else console.log( rows ); }); ``` By this, we can generate a query something like this: ```sql SELECT `field1`, `field2` FROM `table_name` WHERE `field1` = 'value1' AND `field2` = 'value2' ``` For more information, visit the github project. https://github.com/sarahseguenza/nodejs-mysql-query-builder
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Non-Blocking (asynchronous) MySQL Connector for Java. The client can be used to non-block http servers and db related gui applications.
    Downloads: 0 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB