Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
data-kraken
Advanced tools
A command line tool that fetches info about users, commits, repositories, Docker images and npm dependencies from GitHub
A command line tool that fetches info about users, commits, repositories, Docker images and npm dependencies from GitHub.
This tool runs with Node.js. Make sure you have an up-to-date version installed.
You need to have a personal access token for the orgs and repositories on GitHub that you want to examine.
Refer to the instructions on GitHub for further information on this.
Install the data-kraken as a global command line tool using npm like so:
npm install -g data-kraken
Before you can use data-kraken, you have to set it up so that it knows yours the GitHub personal access token you've created (see chapter Preparation).
For this, you create a configuration file with in your home directory, like so:
echo DK_ACCESS_TOKEN=personal-access-token123 > $HOME/.data-kraken
By default, data-kraken uses the API of the public GitHub, github.com. If your company
is hosting its own GitHub Enterprise instance, like we do at Adevinta, add the
DK_BASE_URL
option to your .data-kraken config file, for example:
DK_BASE_URL=github.es.ecg.tools
With the access token in place as described in the previous chapters, run the data-kraken on the command line like so:
data-kraken
(this will display a help message to get you on your way)
By default, once installed, data-kraken will always run the locally installed version. If you don't want to miss the latest features, run this every once in a while to get the latest version:
npm update -g data-kraken
Shows a technical debt score for one or more GitHub repositories.
data-kraken tech-debt --org mobile-de --repo consumer-fe
The repository parameter is optional:
Run --help
for more info on the tech-debt
command:
data-kraken help tech-debt
Shows the guilds associated with repos – backend, frontend, data, qa, android, ios or devops.
data-kraken guild --org mobile-de --repo consumer-fe
The repository parameter is optional:
Many commands, including the guild
command, have a --guilds
option that lets you specify guilds. The
generated output will then only show data from repos associated with the specified guilds.
Run --help
for more info on the guild
command:
data-kraken help guild
Shows the level of inactivity of GitHub repository. The inactivity score is a value from 0 to 100, 0 being a repo that currently gets updated every day and 100 being a repo that has not been updated in a very long time.
data-kraken inactive --org mobile-de --repo consumer-fe
The repository parameter is optional:
Run --help
for more info on the inactive
command:
data-kraken help inactive
Shows the Docker images used in the specified GitHub org and repository, found in a search of all the Dockerfiles in each repo.
data-kraken docker-images --org mobile-de --repo consumer-fe
Repository is optional, if omitted, the whole org is searched.
You can pass a regular expression to match the images against. In the simplest usage example, the expression can just be a search term:
data-kraken docker-images --org mobile-de node
This will give you a list of repositories that use a Node.js image.
More advanced example:
data-kraken docker-images --org mobile-de "^.+/shared/node1[46].+$"
This will list all the repos that use dock.es.ecg.tools/shared/node14 or dock.es.ecg.tools/shared/node16, but not dock.es.ecg.tools/shared/node12.
Run --help
for more info on the docker-images
command:
data-kraken help docker-images
Shows the npm packages that repositories are dependent on according to their package.json files.
data-kraken npm-packages --org mobile-de --repo consumer-fe
Repository is optional, if omitted, the whole org is searched.
You can pass one or two regular expressions to match the package names or versions against. In the simplest usage example, the expression can just be a search term:
data-kraken npm-packages --org mobile-de react
…gives you results for packages that have “react” in them (e.g. react, react-dom, react-router, etc.).
More advanced example:
data-kraken npm-packages --org mobile-de ^react$ "^[~^]*1[68]{1}"
…gives you results for precise package “react” with major versions 16 or 18.
Run --help
for more info on the npm-packages
command:
data-kraken help npm-packages
Shows info about the repositories a user contributed to in “pretty print” on the console:
data-kraken repos patrick-hund
You can use the --org option to constrain output to a specific GitHub org:
data-kraken repos --org mobile-de patrick-hund
You can specify multiple users:
data-kraken repos patrick-hund daniel-korger uwe-loydl
Run --help
for more info on the repos
command:
data-kraken help repos
Shows info about what kinds of files the user modified (frontend or backend):
data-kraken files patrick-hund
As with the repos command, you can specify multiple users and a GitHub org. In addition, you can also constrain output to a specific repository:
data-kraken files --org mobile-de --repo consumer-fe nina-maass
Run --help
for more info on the files
command:
data-kraken help files
To facilitate importing the output into a Google Sheet, you can specify CSV format:
data-kraken repos --format csv patrick-hund
…or…
data-kraken files --format csv patrick-hund
This is particularly useful when using multiple users. You can pipe a list of usernames into data-kraken using xargs and store the output in a CSV file, like this:
cat users.txt | xargs data-kraken files --format csv > files.csv
You can then upload and import the CSV file into Google Sheets.
You can also have data-kraken deliver its output in JSON format, for example:
data-kraken npm-packages --org mobile-de --format json
All commands support a flag for getting more verbose output:
-v
or --verbose
The effect of using verbose mode is different depending on the command and the format type.
When executing a command, data-kraken does a lot of requests to the GitHub API, which can take a long time. Be patient when executing a command that you haven't used before!
For subsequent command executions, data-kraken uses cached data from previous API calls to speed things up.
The time to live of the caching can be configured through the environment variable DK_FETCH_CACHE_TTL
. You can
set it in the .data-kraken config file in your home directory. In
.data-kraken.defaults, this is set to 86400000 milliseconds, which is one day.
For commands related to users (e.g. repos, files), data-kraken fetches commit data of the users.
We fetch data from GitHub as far back as it is allowed to by constraints of the GitHub API. This is usually data for around two weeks, depending on how active the user was (less activity – data ranges further back in time).
Some hints on how to use regular expression with commands that support them (e.g. docker-images , npm-packages):
For commands that create CSV data with times in them (e.g. repos, files), importing the CSV
file in Google Sheets works best if you set the DK_LOCALE
and DK_TIME_ZONE
options in the .data-kraken file
in your home directory to the locale and time zone your Google Sheets is set to. Then dates and times will be
imported properly as dates you can calculate with rather than mere strings.
If your Google Workspace is in German, for example, you want to specify DK_LOCALE=de-DE
. If you are located in
Toronto, you want to specify DK_TIME_ZONE=EST
.
Default locale is English / Great Britain (en-GB
) and Barcelona / Berlin / Amsterdam time (CET
).
You are most welcome to fork this repository and create a pull request. The following will hopefully get you on your way.
nvm use
yarn install
cp .data-kraken.example .data-kraken
DK_ACCESS_TOKEN
in the .data-kraken file, replace the value with your personal GitHub
access token
(instructions)You can run the script with node src/dataKraken.mjs
. For your convenience, there is also an npm script that
does this, with debugging already enabled.
To determine the tech debt score, the program analyses the Dockerfiles and package.json files of the repositories and assigns tech debt scores for dependencies that are outdated or banned. The algorithm uses a YAML config file to do this:
This package uses Jest for automated testing.
To run unit test:
yarn test
Write unit tests mostly for low-level functions that have lots of different input to make sure that they return
the expected result. Use test
and test.each
instead of describe
and it
.
Whenever the program encounters a situation where it can't continue, e.g. network errors from API request
attempts, it should terminate with an error code. Use the function die
in these cases, supplying an error
message:
import die from "./utils/die.js";
die("Failed to execute command");
The codebase provides a package with utility functions for fetching data from the GitHub API.
The main function for fetching data are:
This program includes numerous ways to reduce the number of requests to the GitHub API while making it resilient against connection problems and improving performance.
If you implement additional commands that fetch data from GitHub, you need to use these the same way the existing commands do:
You can turn on a debug logger through the environment variable DEBUG
, example:
DEBUG=* yarn data-kraken docker-images --org mobile-de
This will print log statements to the console that are created through the log function.
The asterisk argument in the above example means show all log statements; you can only show specific log statements by specifying a logger name.
The logger name is the relative path to the logging JavaScript module, prefixed with data-kraken:, with forward slashes replaced by colons and without the file extension.
For example, the logger name for module src/commands/dockerImages/run.js
is
data-kraken:commands:dockerImages:run
, and you can show only log statements from this module with this command:
DEBUG=data-kraken:commands:dockerImages:run yarn data-kraken docker-images --org mobile-de
Objects are logged only up to a certain depth. You can increase this depth with the environment variable
DEBUG_DEPTH
.
You can add log statements to any module using debug, like this:
import createLogFunction from "./utils/createLogFunction.js";
const log = createLogFunction();
log("I'm a happy camper");
The logger name will be set to “data-kraken” automatically. You can override this behaviour by providing a name
as a string argument to createLogFunction
(recommended!):
const log = createLogFunction("my:awesome:logger");
In this case, the logger name you provide is prefixed with data-kraken:
, i.e. the resulting logger name will be
data-kraken:my:awesome:logger
.
If you intend to leave the log statements in the code, please use sensible names according to the conventions of the debug library. Recommended is the path to the logging JavaScript module, with slashes replaced by colons, without file extension.
Example:
If your module's path is src/command/myCommand/doSomething.js
, initialize a logger with this statement:
const log = createLogFunction("command:myCommand:doSomething");
To be able to publish, you need to have the permission on npmjs.org. Ask one of the maintainers to grant you the access rights.
This project uses semantic versioning, a.k.a. SemVer. If you're not familiar with the concept, please read up on it.
In a nutshell:
Beta versions are suffixed with -beta.x
, where x
is a number starting at zero that is incremented with every
beta release.
Before you publish a final version of the package, make sure you test everything with a beta release.
yarn test
"version": "2.0.0-beta.0"
.version("2.0.0-beta.0")
yarn build
yarn npm publish --tag beta
npx data-kraken@beta --version
When you are confident your new version is ready for the public at large, follow the same steps as
above, but this time, without the beta
parts:
yarn test
"version": "2.0.0"
.version("2.0.0")
yarn build
yarn npm publish
npx data-kraken@latest --version
MIT license – copyright 2022 mobile.de GmbH
FAQs
A command line tool that fetches info about users, commits, repositories, Docker images and npm dependencies from GitHub
We found that data-kraken demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.