在 NodeJS 应用程序中使用 node-gitlab API,我如何获取项目的提交列表。我可以使用以下方式获取项目列表:
router.get('/projects', function(req, res, next) {
gitlab.projects.all(function(projects) {
res.json(projects);
console.log(projects);
});
});
谢谢
在 NodeJS 应用程序中使用 node-gitlab API,我如何获取项目的提交列表。我可以使用以下方式获取项目列表:
router.get('/projects', function(req, res, next) {
gitlab.projects.all(function(projects) {
res.json(projects);
console.log(projects);
});
});
谢谢