I want read test results from Jenkins jobs using node js 
API(node-jenkins-api)  or CURL command and display it in browser using 
Anjular js is it possible to use both node js and anjular js?

these are the node js script

var jenkinsapi = require('jenkins-api');
var jenkins = 
jenkinsapi.init('http://username:to...@jenjinserver.com:8080/jenkins');

jenkins.job_info('jenkin job', function(error, response ,data) {
    if (!error) {
        console.log(data);

    }
    console.log(response);

});

-- 
You received this message because you are subscribed to the Google Groups 
"Angular" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to