Programming Languages Dataset

This dataset contains structured information about several popular programming languages. Each entry includes details like the language name, year of creation, creator, typing discipline, primary usage domains, and TIOBE popularity index.

This dataset is useful for developers, educators, and analysts to compare languages, visualize trends, or create language selectors or timelines.


Sample JSON

[
  {
    "name": "Python",
    "year_created": 1991,
    "created_by": "Guido van Rossum",
    "typing_discipline": "Dynamic",
    "domains": ["Web", "Data Science", "Automation", "Education"],
    "tiobe_rank": 1
  },
  {
    "name": "JavaScript",
    "year_created": 1995,
    "created_by": "Brendan Eich",
    "typing_discipline": "Dynamic",
    "domains": ["Web", "Mobile", "Desktop", "Backend"],
    "tiobe_rank": 6
  },
  {
    "name": "Rust",
    "year_created": 2010,
    "created_by": "Graydon Hoare",
    "typing_discipline": "Static",
    "domains": ["Systems", "WebAssembly", "Embedded"],
    "tiobe_rank": 19
  }
]

Field Descriptions

FieldTypeDescription
namestringName of the programming language
year_creatednumberThe year the language was first released or introduced
created_bystringName of the person or organization who created the language
typing_disciplinestringIndicates whether the language is statically or dynamically typed
domainsstring[]Primary domains or use cases where the language is applied
tiobe_ranknumberRank from TIOBE Index (lower is more popular)

How to Use This Dataset

You can use this JSON dataset in various ways:

  • UI development: Create dropdowns, tag filters, or card views of language info.
  • Data analysis: Compare languages based on typing discipline or domain fit.
  • Charts and timelines: Visualize evolution or popularity trends using libraries like D3.js or Chart.js.
  • Search/filter interfaces: Build an interface to explore language characteristics.
  • Educational content: Teach programming concepts, history, and classification.

Example: Filtering Static-Typed Languages (in JS)

function filterStaticTyped(languages) {
  return languages.filter(lang => lang.typing_discipline === "Static");
}
const dataset = [/* JSON data above */];
console.log(filterStaticTyped(dataset)); // ➝ [{ name: "Rust", ... }]