An open API service indexing awesome lists of open source software.

https://github.com/tim-smart/node-bzr

A Node.js wrapper for the Bazaar SCM cli
https://github.com/tim-smart/node-bzr

Last synced: 9 months ago
JSON representation

A Node.js wrapper for the Bazaar SCM cli

Awesome Lists containing this project

README

          

# node-bzr

A simple node wrapper around the `bzr` source code management tool.

## Usage

```typescript
import Bzr from "bzr";

const bzr = Bzr("path/to/working/directory");

bzr
.raw(["branch", "lp:myrepo"])
.then(() => {
console.log("Code copied!");
return bzr.tags();
})
.then((tags) => {
console.log("Here are the tags:", tags);
});
```