PLDB is a comprehensive public domain database containing over 135,000 facts about more than 5,000 programming languages. The project includes both the complete dataset and the website code for pldb.io.
- Rich Dataset: Extensive information about programming languages, from high-level formats to binary specifications
- Multiple Export Formats: Access the complete dataset in CSV, TSV, or JSON format
- Public Domain: All data and code is freely available for any use
- Regular Updates: Actively maintained with version control and release notes
- Web Interface: Browse the data through an intuitive web interface at pldb.io
Access the complete dataset in your preferred format:
- CSV: pldb.io/pldb.csv
- TSV: pldb.io/pldb.tsv
- JSON: pldb.io/pldb.json
Full documentation for the data formats is available at pldb.io/csv.html
Get started with local development:
# Clone the repository
git clone https://github.com/breck7/pldb
cd pldb
# First-time setup
npm i -g cloc
npm install .
# (Optional) Run tests
npm run test
# Build the site
npm run build
# Before committing changes
npm run format
The most important components of the repository:
concepts/
: Contains the ScrollSet (individual files for each concept)code/measures.parsers
: Contains the Parsers (schema) for the ScrollSet- View detailed language statistics at pldb.io/pages/about.html
PLDB includes a sophisticated ranking system for programming languages based on five key metrics:
- Number of estimated users
- Foundation score (languages built using this language)
- Estimated job opportunities
- Language influence
- Available measurements
Learn more about the ranking algorithm at pldb.io/pages/the-rankings-algorithm.html
Latest major releases:
- 9.0.0 (May 2024): Migrated to Scroll 84
- 8.0.0 (March 2023): Upgraded to TrueBase 9
- See Release Notes for complete history
Contributions are welcome! PLDB is designed for two main audiences:
- Programming Language Creators: Use our organized data to make informed design decisions
- Programming Language Users: Get data-driven insights about the programming language ecosystem
- Main Website: pldb.io
- About Page: pldb.io/pages/about.html
- Acknowledgements: pldb.io/pages/acknowledgements.html
This project is dedicated to the public domain. When using PLDB, we appreciate attribution but it's not required. All sources are listed at pldb.io/pages/acknowledgements.html.
The primary site is hosted at pldb.io via ScrollHub. For offline access or redundancy, you can clone the repository and build locally:
git clone https://github.com/breck7/pldb.git
cd pldb
git pull # To keep updated