Skip to content

maubry/atlas-stash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});

About

REST Client for Atlassian's Stash

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published