Kerberos authentication with Node.js

I need to access a service (RESTful) which supports only Kerberos authentication from my Node.js application. Is there any module in Node to do this?

Passport, the popular authentication module for Node.js, doesn't seem to have a strategy for Kerberos auth.

I use local strategy as default strategy. and use node-krb5 to verify the username and passwd. it's work, you can have a try.

There are not many kerberos modules in the npm registry, but this one seems a more reasonable choice currently:

https://npmjs.org/package/kerberos

I would use it with passport and a local strategy as default.