0.0.8 • Published 8 years ago

atlas-stash v0.0.8

Weekly downloads
2
License
Public Domain
Repository
github
Last release
8 years ago

atlas-stash

REST Client for Atlassian's Stash

This is still in progress and so the API should be considered unstabled, but it's in a good enough shape to start playing with.

Example

var StashApi = require("atlas-stash").StashApi;

var user = "username",
    password = "password",
    stash = new StashApi("https", "stash.vodori.com", null, user, password);

var projects = stash.projects();
projects.on("error", function (error){
    console.error(error);
}).on("allPages", function(allPages) {
    console.log("All Pages", allPages);
});

stash.repos("PEPPER").on("allPages", function(repos) {
    console.log("Repos: ", repos);
});
0.0.8

8 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago