0.3.10 • Published 11 years ago

yast v0.3.10

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

This is a wrapper around the Yast API written in CoffeeScript. It is not complete as yet. Functionality is implemented as I need it.

This is an extremely immature project. There's no package.json, it's not listed in NPM. Integration is up to you.

Usage example:

CoffeeScript

yast = require './yast'
yast.login '<yast username>', '<password>', (err, user) ->
  return console.log err if err
  yast.folders user, (err, folders) ->
    console.log err, folders

JavaScript

require('coffee-script')
var yast = require('./yast');

yast.login('<yast username>', '<yast password>', function(err, user) {
	if (err) {
		return console.log(err);
	}

	yast.folders(user, function(err, folders) {
		console.log(err, folders);
	})
})
0.3.10

11 years ago

0.3.9

11 years ago

0.3.8

11 years ago

0.3.7

11 years ago

0.3.6

11 years ago

0.3.5

11 years ago

0.3.4

11 years ago

0.3.3

11 years ago

0.3.2

11 years ago

0.3.1

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago