The result is based on ratio of number of commits from initial and final time ranges.
Initial time range – from 5 Jul, 2023 to 5 Oct, 2023
Final time range – from 5 Apr, 2024 to 5 Jul, 2024
Additions and deletions stats are not available for this repository due to GitHub API limitations.
It is basically a number of most active contributors responsible for 80% of contributions.
Bus factor tries to assess "What happens if a key member of the team is hit by a bus?". The more there are key members, the lower the risk.
The electron/electron repository has a bus factor of 16.
Low risk, knowledge is well distributed among the team members
Bus factor was measured on 14 Aug 2024
The Electron GitHub repository is the official source code of the Electron framework maintained by GitHub. Electron is an open-source framework developed and maintained by GitHub.
Electron allows for the development of desktop GUI applications using web technologies: it combines the Chromium rendering engine and the Node.js runtime to allow running applications written in HTML, CSS, and JavaScript.
Here's an example of a 'Hello World' application in Electron:
const { app, BrowserWindow } = require('electron')
function createWindow () {
let win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
}
})
win.loadFile('index.html')
}
app.whenReady().then(createWindow)
The repository allows contributions from developers globally and it's under the MIT license. You can report issues, suggest new features, or even contribute to the Electron code.
You can visit the Electron GitHub repository here: electron/electron.
Contributor | Commits |
---|---|
8514 | |
2998 | |
1734 | |
1428 | |
1227 |