Skip to content

Commit dd156cc

Browse files
committed
add expiresInSeconds option to sign. closes #51
1 parent c7b3ab1 commit dd156cc

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ encoded private key for RSA and ECDSA.
2525
`options`:
2626

2727
* `algorithm` (default: `HS256`)
28-
* `expiresInMinutes`
28+
* `expiresInMinutes` or `expiresInSeconds`
2929
* `audience`
3030
* `subject`
3131
* `issuer`

index.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
3030
payload.iat = timestamp;
3131
}
3232

33-
if (options.expiresInMinutes) {
34-
var ms = options.expiresInMinutes * 60;
35-
payload.exp = timestamp + ms;
33+
var expiresInSeconds = options.expiresInMinutes ?
34+
options.expiresInMinutes * 60 :
35+
options.expiresInSeconds;
36+
37+
if (expiresInSeconds) {
38+
payload.exp = timestamp + expiresInSeconds;
3639
}
3740

3841
if (options.audience)

test/expiresInSeconds.tests.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var jwt = require('../index');
2+
var expect = require('chai').expect;
3+
4+
describe('noTimestamp', function() {
5+
6+
it('should work with string', function () {
7+
var token = jwt.sign({foo: 123}, '123', { expiresInSeconds: 5 });
8+
var result = jwt.verify(token, '123');
9+
expect(result.exp).to.be.closeTo(Math.floor(Date.now() / 1000) + 5, 0.5);
10+
});
11+
12+
});

0 commit comments

Comments
 (0)