Return to Popular Libraries and Frameworks, C standard library, C plus plus standard library | C++ standard library, C Sharp standard library | standard library, Go standard library, Java standard library, Kotlin standard library, Python standard library (see Python 3 Standard Library by Example), Ruby standard library, Swift standard library, Software engineering topics, Programming glossary
What are the formal names of the Standard Libraries for each of the top 50 programming languages. Don't number the list, instead put an asterisk and 1 space before each item in a list. Give an appropriate URL link to the GitHub repository and to the official vendor documentation URL for the standard library. Make URLs as raw URLs with no formatting. Don't repeat yourself
GitHub: https://github.com/python/cpython Documentation: https://docs.python.org/3/library/
GitHub: https://github.com/openjdk/jdk Documentation: https://docs.oracle.com/en/java/javase/17/docs/api/index.html
GitHub: https://github.com/gcc-mirror/gcc/tree/master/libstdc++-v3 Documentation: https://en.cppreference.com/w/cpp
GitHub: https://github.com/tc39/ecma262 Documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference
GitHub: https://sourceware.org/git/?p=glibc.git Documentation: https://en.cppreference.com/w/c
GitHub: https://github.com/golang/go Documentation: https://pkg.go.dev/std
GitHub: https://github.com/ruby/ruby Documentation: https://ruby-doc.org/stdlib/
GitHub: https://github.com/rust-lang/rust Documentation: https://doc.rust-lang.org/std/
GitHub: https://github.com/apple/swift Documentation: https://developer.apple.com/documentation/swift/swift_standard_library/
GitHub: https://github.com/php/php-src Documentation: https://www.php.net/manual/en/funcref.php
GitHub: https://github.com/dotnet/runtime Documentation: https://docs.microsoft.com/en-us/dotnet/standard/
GitHub: https://github.com/microsoft/TypeScript Documentation: https://www.typescriptlang.org/docs/handbook/declaration-files/library-structures.html
GitHub: https://github.com/Perl/perl5 Documentation: https://perldoc.perl.org/index-library.html
GitHub: https://github.com/JetBrains/kotlin Documentation: https://kotlinlang.org/api/latest/jvm/stdlib/
GitHub: https://github.com/wch/r-source Documentation: https://stat.ethz.ch/R-manual/R-devel/library/base/html/00Index.html
GitHub: https://github.com/scala/scala Documentation: https://www.scala-lang.org/api/current/scala/Predef$.html
GitHub: https://github.com/apple/swift-corelibs-foundation Documentation: https://developer.apple.com/documentation/foundation
GitHub: https://git.savannah.gnu.org/git/bash.git Documentation: https://www.gnu.org/software/bash/manual/
GitHub: https://github.com/lua/lua Documentation: https://www.lua.org/manual/5.4/
GitHub: (MATLAB is proprietary) Documentation: https://www.mathworks.com/help/matlab/
GitHub: https://github.com/ghc/ghc Documentation: https://hackage.haskell.org/package/base
GitHub: https://github.com/JuliaLang/julia Documentation: https://docs.julialang.org/en/v1/stdlib/
GitHub: https://github.com/fortran-lang/stdlib Documentation: https://fortran-lang.org/stdlib/
GitHub: https://github.com/dotnet/vblang Documentation: https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/
GitHub: https://github.com/dart-lang/sdk Documentation: https://api.dart.dev/stable/
GitHub: (AdaCore proprietary) Documentation: https://www.adaic.org/resources/add_content/standards/05rm/html/RM-A-1.html
GitHub: https://github.com/graemeg/freepascal Documentation: https://www.freepascal.org/docs.html
GitHub: https://github.com/racket/racket Documentation: https://docs.racket-lang.org/
GitHub: https://github.com/clisp/clisp Documentation: https://clisp.sourceforge.io/impnotes.html
GitHub: https://github.com/erlang/otp Documentation: https://www.erlang.org/docs
GitHub: https://github.com/elixir-lang/elixir Documentation: https://hexdocs.pm/elixir/Kernel.html
GitHub: https://github.com/clojure/clojure Documentation: https://clojure.org/api/api
GitHub: https://github.com/dotnet/fsharp Documentation: https://fsharp.github.io/fsharp-core-docs/
GitHub: https://github.com/ocaml/ocaml Documentation: https://v2.ocaml.org/api/index.html
GitHub: (VHDL is standardized by IEEE) Documentation: https://vhdl.renerta.com/
GitHub: https://github.com/SWI-Prolog/swipl Documentation: https://www.swi-prolog.org/pldoc/
GitHub: https://github.com/apache/groovy Documentation: https://groovy-lang.org/api.html
GitHub: https://github.com/dlang/phobos Documentation: https://dlang.org/phobos/
GitHub: https://github.com/nim-lang/Nim Documentation: https://nim-lang.org/docs/lib.html
GitHub: https://github.com/crystal-lang/crystal Documentation: https://crystal-lang.org/api/
GitHub: (COBOL is managed by multiple standards bodies) Documentation: https://supportline.microfocus.com/documentation/books/oc41books/fhops.htm
GitHub: https://github.com/ziglang/zig Documentation: https://ziglang.org/documentation/master/std/
GitHub: https://github.com/racket/racket Documentation: https://docs.racket-lang.org/
GitHub: https://github.com/HaxeFoundation/haxe Documentation: https://api.haxe.org/
GitHub: https://github.com/OpenSmalltalk/opensmalltalk-vm Documentation: https://wiki.squeak.org/squeak/
GitHub: https://core.tcl-lang.org/tcl Documentation: https://www.tcl.tk/man/tcl8.6/
GitHub: (Eiffel is proprietary) Documentation: https://www.eiffel.org/doc/eiffel/ELKS_2000
GitHub: https://github.com/onetrueawk/awk Documentation: http://awk.info/?doc
These libraries serve as the foundational components for their respective programming languages, providing essential tools, functions, and utilities that developers use to build applications.
In computer programming, a standard library is the library made available across implementations of a programming language. Often, a standard library is specified by its associated programming language specification, however, some are set in part or whole by more informal practices of a language community.
Some languages define a core part of the standard library that must be made available in all implementations while allowing other parts to be implemented optionally.
As defined with the core language aspects, the line between the core language and its standard library is relatively subtle. A programmer may confuse the two aspects even though the language designers intentionally separate the two.
The line between the core language and its standard library is further blurred in some languages by defining core language constructs in terms of its standard library. For example, Java defines a string literal as an instance of the java.lang.String class. Smalltalk defines an anonymous function expression (a "block") as an instance of its library's BlockContext class. Scheme does not specify which portions must be implemented as core language vs. standard library.
standard library on DuckDuckGo
Redirects to JavaScript
Note: Node.js is not a programming language, but is an Open-source software | open-source, cross-platform JavaScript Runtime system | run-time environment that executes JavaScript code outside of a web browser.
Programming: Programming languages
Variables and Data Types, Control Structures, Functions and Methods, Object-Oriented Programming (OOP), Functional Programming, Procedural Programming, Event-Driven Programming, Concurrent and Parallel Programming, Error Handling and Debugging, Memory Management, Recursion, Algorithms, Data Structures, Design Patterns, Software Development Life Cycle (SDLC), Version Control Systems, Database Programming, Web Development, Mobile App Development, Game Development, Machine Learning and AI Programming, Network Programming, API Development, Security in Programming, Testing and Quality Assurance, User Interface and User Experience Design, Scripting Languages, Assembly Language, High-Level Programming Languages, Low-Level Programming Languages, Compiler Design, Interpreter Design, Garbage Collection, Regular Expressions, Graphical User Interface (GUI) Programming, Command Line Interface Development, Cross-Platform Development, Cloud Computing in Programming, Blockchain Programming, IoT Programming, Embedded Systems Programming, Microservices Architecture, Serverless Architecture, Big Data Technologies, Data Visualization, Data Mining and Analysis, Natural Language Processing (NLP), Computer Graphics Programming, Virtual Reality (VR) Development, Augmented Reality (AR) Development, Cryptography in Programming, Distributed Systems, Real-Time Systems Programming, Operating System Development, Compiler and Interpreter Development, Quantum Computing, Software Project Management, Agile Methodologies, DevOps Practices, Continuous Integration and Continuous Deployment (CI/CD), Software Maintenance and Evolution, Software Licensing, Open Source Development, Accessibility in Software Development, Internationalization and Localization, Performance Optimization, Scalability Techniques, Code Refactoring, Design Principles, API Design, Data Modeling, Software Documentation, Peer-to-Peer Networking, Socket Programming, Front-End Development, Back-End Development, Full Stack Development, Secure Coding Practices, Code Reviews, Unit Testing, Integration Testing, System Testing, Functional Programming Paradigms, Imperative Programming, Declarative Programming, Software Architecture, Cloud-Native Development, Infrastructure as Code (IaC), Ethical Hacking for Developers, Artificial Intelligence Ethics in Programming, Software Compliance and Standards, Software Auditing, Debugging Tools and Techniques, Code Optimization Techniques, Software Deployment Strategies, End-User Computing, Computational Thinking, Programming Logic and Techniques, Advanced Data Management
Agile, algorithms, APIs, asynchronous programming, automation, backend, CI/CD, classes, CLI, client-side, cloud (Cloud Native-AWS-Azure-GCP-IBM Cloud-IBM Mainframe-OCI), comments, compilers, concurrency, conditional expressions, containers, control flow, databases, data manipulation, data persistence, data science, data serialization, data structures, dates and times, debugging, dependency injection, design patterns, DevOps, distributed software, Docker, error handling, file I/O, frameworks, frontend, functions, functional programming, GitHub, history, Homebrew, IDEs, installation, JetBrains, JSON, JSON Web Token (JWT), K8S, lambdas, language spec, libraries, linters, Linux, logging, macOS, methods, ML, microservices, mobile dev, modules, monitoring, multi-threaded, network programming, null, numbers, objects, object-oriented programming, observability, OOP, ORMs, packages, package managers, performance, programmers, programming, reactive, refactoring, reserved words, REST APIs, RHEL, SDK, secrets, security, serverless, server-side, Snapcraft, SQL, StackOverflow, standards, standard library, statements, scope, scripting, syntax, systems programming, TDD, testing, tools, type system, web dev, variables, versions, Ubuntu, unit testing, Windows; topics-courses-books-docs. (navbar_programming - see also navbar_variables, navbar_programming_libraries, navbar_data_structures, navbar_algorithms, navbar_software_architecture, navbar_agile)
Standard Libraries: Python Standard Library, Java Class Library (JCL), C++ Standard Library, JavaScript Standard Library, C Standard Library, Ruby Standard Library, PHP Standard Library (SPL), NET Framework Class Library, Swift Standard Library, R Standard Library, Go Standard Library, Kotlin Standard Library, Rust Standard Library, Scala Standard Library, TypeScript lib.d.ts, Perl Core Modules, Lua Standard Library, Haskell Base Library, Erlang Standard Library, Clojure Core Library, Dart Core Library, Core Library, Elm Core Libraries, Julia Standard Library, Groovy SDK; Awesome Standard Libraries. (navbar_standard_library - see also navbar_)
Cloud Monk is Retired ( for now). Buddha with you. © 2025 and Beginningless Time - Present Moment - Three Times: The Buddhas or Fair Use. Disclaimers
SYI LU SENG E MU CHYWE YE. NAN. WEI LA YE. WEI LA YE. SA WA HE.