All Projects β†’ madnight β†’ Githut

madnight / Githut

Licence: agpl-3.0
Github Language Statistics

Programming Languages

javascript
184084 projects - #8 most used programming language
languages
34 projects

Projects that are alternatives of or similar to Githut

Yomo
πŸ¦– Streaming-Serverless Framework for Low-latency Edge Computing applications, running atop QUIC protocol, engaging 5G technology.
Stars: ✭ 279 (-44.53%)
Mutual labels:  serverless, functional-reactive-programming
Onedrive Index Cloudflare Worker
DEPRECATED: Please use https://github.com/spencerwooo/onedrive-cf-index instead
Stars: ✭ 485 (-3.58%)
Mutual labels:  serverless
Honeylambda
honeyΞ» - a simple, serverless application designed to create and monitor fake HTTP endpoints (i.e. URL honeytokens) automatically, on top of AWS Lambda and Amazon API Gateway
Stars: ✭ 454 (-9.74%)
Mutual labels:  serverless
Mangum
AWS Lambda & API Gateway support for ASGI
Stars: ✭ 475 (-5.57%)
Mutual labels:  serverless
React Firebase Starter
Boilerplate (seed) project for creating web apps with React.js, GraphQL.js and Relay
Stars: ✭ 4,366 (+767.99%)
Mutual labels:  serverless
Now Builders
Official Now Builders created by the ZEIT team
Stars: ✭ 483 (-3.98%)
Mutual labels:  serverless
Github Readme Stats
⚑ Dynamically generated stats for your github readmes
Stars: ✭ 34,955 (+6849.3%)
Mutual labels:  serverless
Apisix
The Cloud-Native API Gateway
Stars: ✭ 7,920 (+1474.55%)
Mutual labels:  serverless
Gateway
Drop-in replacement for Go net/http when running in AWS Lambda & API Gateway
Stars: ✭ 484 (-3.78%)
Mutual labels:  serverless
Firebase Gcp Examples
πŸ”₯ Firebase app architectures, languages, tools & some GCP things! React w Next.js, Svelte w Sapper, Cloud Functions, Cloud Run.
Stars: ✭ 470 (-6.56%)
Mutual labels:  serverless
Aws Serverless Ecommerce Platform
Serverless Ecommerce Platform is a sample implementation of a serverless backend for an e-commerce website. This sample is not meant to be used as an e-commerce platform as-is, but as an inspiration on how to build event-driven serverless microservices on AWS.
Stars: ✭ 469 (-6.76%)
Mutual labels:  serverless
Functions
Tutorials, examples, workshops and a playground for serverless with Netlify Functions
Stars: ✭ 463 (-7.95%)
Mutual labels:  serverless
Repo Supervisor
Scan your code for security misconfiguration, search for passwords and secrets. πŸ”
Stars: ✭ 482 (-4.17%)
Mutual labels:  serverless
Microcule
SDK and CLI for spawning streaming stateless HTTP microservices in multiple programming languages
Stars: ✭ 454 (-9.74%)
Mutual labels:  serverless
Dazn Lambda Powertools
Powertools (logger, HTTP client, AWS clients, middlewares, patterns) for Lambda functions.
Stars: ✭ 501 (-0.4%)
Mutual labels:  serverless
Scope
πŸ”­ Scope - Create a birdeye's view of your Github project and embed on your site
Stars: ✭ 453 (-9.94%)
Mutual labels:  serverless
Simplestore
A clean, responsive storefront boilerplate with no database or backend
Stars: ✭ 468 (-6.96%)
Mutual labels:  serverless
Chromda
Ξ» πŸ–ΌοΈ Chromda is an AWS Lambda function for capturing screenshots of websites.
Stars: ✭ 481 (-4.37%)
Mutual labels:  serverless
Spring Boot Microservices On Kubernetes
In this code we demonstrate how a simple Spring Boot application can be deployed on top of Kubernetes. This application, Office Space, mimicks the fictitious app idea from Michael Bolton in the movie "Office Space".
Stars: ✭ 504 (+0.2%)
Mutual labels:  serverless
Appwrite
Appwrite is a secure end-to-end backend server for Web, Mobile, and Flutter developers that is packaged as a set of Docker containers for easy deployment πŸš€
Stars: ✭ 14,592 (+2800.99%)
Mutual labels:  serverless

GitHub Language Statistics

License (AGPL-3.0) Build Status Code Climate Issue Count dependencies Status Known Vulnerabilities

Data Generation

Languages

Get language top list for Github

SELECT language.name, COUNT(language.name)
AS count FROM [bigquery-public-data:github_repos.languages]
group by language.name order by count DESC

Result of first 10 from 322

{"language_name":"JavaScript","count":"1006022"}
{"language_name":"CSS","count":"745573"}
{"language_name":"HTML","count":"663315"}
{"language_name":"Shell","count":"593461"}
{"language_name":"Python","count":"492715"}
{"language_name":"Ruby","count":"365413"}
{"language_name":"Java","count":"340622"}
{"language_name":"PHP","count":"328907"}
{"language_name":"C","count":"286272"}
{"language_name":"C++","count":"267552"}
...

Licenses

Get license top list for Github

SELECT license, COUNT(license)
AS count FROM [bigquery-public-data:github_repos.licenses]
group by license order by count DESC

Full result

{"license":"mit","count":"1551711"}
{"license":"apache-2.0","count":"455316"}
{"license":"gpl-2.0","count":"376453"}
{"license":"gpl-3.0","count":"284761"}
{"license":"bsd-3-clause","count":"161041"}
{"license":"bsd-2-clause","count":"57412"}
{"license":"unlicense","count":"43899"}
{"license":"lgpl-3.0","count":"38213"}
{"license":"agpl-3.0","count":"38034"}
{"license":"cc0-1.0","count":"28600"}
{"license":"epl-1.0","count":"24074"}
{"license":"lgpl-2.1","count":"23872"}
{"license":"isc","count":"17690"}
{"license":"mpl-2.0","count":"17421"}
{"license":"artistic-2.0","count":"9413"}

Pull Requests

Get the number of Pull Requests per day/month/year

SELECT language as name, year, quarter, count FROM ( SELECT * FROM (
SELECT lang as language, y as year, q as quarter, type,
COUNT(*) as count FROM (SELECT a.type type, b.lang lang, a.y y, a.q q FROM (
SELECT type, YEAR(created_at) as y, QUARTER(created_at) as q,
STRING(REGEXP_REPLACE(repo.url, r'(https:\/\/github\.com\/|
https:\/\/api\.github\.com\/repos\/)', '')) as name
FROM [githubarchive:day.20130118] ) a
JOIN ( SELECT repo_name as name, lang FROM ( SELECT * FROM (
SELECT *, ROW_NUMBER() OVER (PARTITION BY repo_name ORDER BY lang) as num FROM (
SELECT repo_name, FIRST_VALUE(language.name) OVER (
partition by repo_name order by language.bytes DESC) AS lang
FROM [bigquery-public-data:github_repos.languages]))
WHERE num = 1 order by repo_name)
WHERE lang != 'null') b ON a.name = b.name)
GROUP by type, language, year, quarter
order by year, quarter, count DESC)
WHERE count >= 100) WHERE type = 'PullRequestEvent'

Manual

Googles BigQuery is free for public datasets like Github, Reddit or Stackoverflow. It is limited to 1000 GB query volume per month. One of the querys above takes about 50-200 MB query volume. The public dataset for Github is available here: https://cloud.google.com/bigquery/public-data/github

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].