Socket
Book a DemoInstallSign in
Socket

@altano/repository-tools

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@altano/repository-tools

Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

repository-tools

npm Typed with TypeScript ESM only

Misc tools for dealing with repositories of multiple version control systems

Supported Version Control Systems

  • git
  • mercurial
  • sapling
  • subversion

Tools

findRoot[Sync]

Given a path inside a repository, find the path of the root

Example:

findRootSync("/my-git-repo/some/subdirectory"); // => "/my-git-repo"

Example:

await findRoot("/my-git-repo/some/subdirectory"); // => "/my-git-repo"

Importing

NOTE: As of v1.0.0 this is an ESM-only module package. It can be imported as an ESM module from any Node.js version but if requiring this package from a CJS package, you must use Node.js v20.19.0+ or v22.12.0+. If you get a ERR_REQUIRE_ESM error when calling require("@altano/repository-tools") make sure you're on a new enough version of Node.js.

You may import all the tools, or import functions directly:

Using sub-path exportsImport to use
Noimport { findRoot } from "@altano/repository-tools";
Yesimport { findRoot } from "@altano/repository-tools/findRoot.js";

Keywords

repository

FAQs

Package last updated on 07 Jul 2025

Did you know?

Socket

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.

Install

Related posts