Skip to content

Commit 113f940

Browse files
committed
feat(bundle): Added support for running without bundler
1 parent fe9c6ed commit 113f940

12 files changed

+100
-27
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
generated-*
33
dist
4+
dist-bundle
5+
bundle.js

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ U2F API for browsers
88

99
## History
1010

11+
- 1.1.0
12+
- Can be used [without bundler](#using-without-bundler)
1113
- 1.0.0
1214
- Support for custom promise libraries removed
1315
- Promises no longer cancellable
@@ -103,6 +105,16 @@ var u2fApi = require( 'u2f-api' ); // CommonJS
103105
import u2fApi from 'u2f-api' // ES modules
104106
```
105107

108+
#### Using without bundler
109+
110+
`u2f-api` can be used without a bundler (like Webpack). Just include:
111+
112+
```html
113+
<head><script src="https://cdn.jsdelivr.net/npm/u2f-api@latest/bundle.js"></script></head>
114+
```
115+
116+
The functionality will be in the `window.u2fApi` object.
117+
106118

107119
### Registering a passkey
108120

external.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module "jsdom";

google/modules.patch

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- generated-google-u2f-api.js 2019-07-15 16:08:47.000000000 +0200
2+
+++ generated-google-u2f-api.js 2019-07-15 16:08:52.000000000 +0200
3+
@@ -16,7 +16,7 @@
4+
*/
5+
var u2f = u2f || {};
6+
7+
-module.exports.chromeApi = u2f; // Adaptation for u2f-api package
8+
+export const chromeApi = u2f; // Adaptation for u2f-api package
9+
10+
/**
11+
* FIDO U2F Javascript API Version

google/this.patch

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
--- google-u2f-api.js 2018-03-20 12:07:45.000000000 +0100
22
+++ generated-google-u2f-api.js 2018-03-20 13:38:17.000000000 +0100
3+
@@ -7,7 +7,7 @@
4+
/**
5+
* @fileoverview The U2F api.
6+
*/
7+
-'use strict';
8+
+// 'use strict';
9+
10+
11+
/**
312
@@ -16,6 +16,8 @@
413
*/
514
var u2f = u2f || {};
615

7-
+module.exports = u2f; // Adaptation for u2f-api package
16+
+module.exports.chromeApi = u2f; // Adaptation for u2f-api package
817
+
918
/**
1019
* FIDO U2F Javascript API Version

index.bundle.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
import * as u2fApi from './lib/u2f-api'
4+
5+
( < any >window ).u2fApi = u2fApi;

lib/u2f-api.ts

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

3-
import * as chromeApi from './generated-google-u2f-api'
3+
// @ts-ignore
4+
import { chromeApi } from './generated-google-u2f-api'
45

56

67
// Feature detection (yes really)
@@ -40,6 +41,12 @@ export interface SignResponse {
4041
signatureData: string;
4142
}
4243

44+
interface BackendError {
45+
errorCode: keyof typeof ErrorCodes;
46+
}
47+
48+
type OrError< T > = T & BackendError;
49+
4350
export type Transport = 'bt' | 'ble' | 'nfc' | 'usb';
4451
export type Transports = Array< Transport >;
4552

@@ -50,7 +57,7 @@ export interface RegisteredKey {
5057
appId: string;
5158
}
5259

53-
var _backend: Promise< API > = null;
60+
var _backend: Promise< API > | null = null;
5461
function getBackend( )
5562
{
5663
if ( _backend )
@@ -93,7 +100,7 @@ function getBackend( )
93100
return notSupported( );
94101

95102
// Test for google extension support
96-
chromeApi.isSupported( function( ok )
103+
chromeApi.isSupported( function( ok: any )
97104
{
98105
if ( ok )
99106
resolve( { u2f: chromeApi } );
@@ -128,10 +135,10 @@ export const ErrorNames = {
128135
"5": "TIMEOUT"
129136
};
130137

131-
function makeError( msg, err )
138+
function makeError( msg: string, err: BackendError )
132139
{
133140
const code = err != null ? err.errorCode : 1; // Default to OTHER_ERROR
134-
const type = ErrorNames[ '' + code ];
141+
const type = ErrorNames[ < keyof typeof ErrorNames >( '' + code ) ];
135142
const error = new Error( msg );
136143
( < any >error ).metaData = { type, code };
137144
return error;
@@ -143,7 +150,7 @@ export function isSupported( )
143150
.then( backend => !!backend.u2f );
144151
}
145152

146-
function _ensureSupport( backend )
153+
function _ensureSupport( backend: API )
147154
{
148155
if ( !backend.u2f )
149156
{
@@ -196,7 +203,7 @@ export function register(
196203
if ( typeof signRequests === 'number' && typeof timeout === 'undefined' )
197204
{
198205
timeout = signRequests;
199-
signRequests = null;
206+
signRequests = [ ];
200207
}
201208

202209
const _signRequests = arrayify(
@@ -212,7 +219,7 @@ export function register(
212219

213220
return new Promise< RegisterResponse >( function( resolve, reject )
214221
{
215-
function callback( response )
222+
function callback( response: OrError< RegisterResponse > )
216223
{
217224
if ( response.errorCode )
218225
reject( makeError( "Registration failed", response ) );
@@ -248,7 +255,7 @@ export function sign(
248255

249256
return new Promise< SignResponse >( function( resolve, reject )
250257
{
251-
function callback( response )
258+
function callback( response: OrError< SignResponse > )
252259
{
253260
if ( response.errorCode )
254261
reject( makeError( "Sign failed", response ) );

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@
99
"url": "https://github.com/grantila/u2f-api.git"
1010
},
1111
"files": [
12-
"dist"
12+
"dist",
13+
"bundle.js"
1314
],
1415
"scripts": {
15-
"build": "scripts/build.sh",
16+
"build:lib": "scripts/build.sh",
17+
"build:rollup": "node_modules/.bin/rimraf bundle.js && node_modules/.bin/rollup dist-bundle/index.bundle.js --file bundle.js --format iife",
18+
"build": "yarn build:lib && yarn build:rollup",
1619
"test": "node_modules/.bin/mocha dist/test",
1720
"buildtest": "npm run build && npm run test",
1821
"travis-deploy-once": "travis-deploy-once",
@@ -35,6 +38,7 @@
3538
"main": "./dist/index.js",
3639
"types": "./dist/index.d.ts",
3740
"devDependencies": {
41+
"@types/chai": "^4.1.7",
3842
"@types/mocha": "5.x",
3943
"already": "1.x",
4044
"chai": "4.x",
@@ -44,9 +48,11 @@
4448
"mocha": "6.x",
4549
"pre-commit": "1.x",
4650
"rimraf": "2.x",
51+
"rollup": "^1.17.0",
4752
"semantic-release": "15.x",
4853
"source-map-support": "0.x",
4954
"travis-deploy-once": "5.x",
55+
"ts-node": "^8.3.0",
5056
"typescript": "3.x"
5157
},
5258
"config": {

scripts/build.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
patch google/google-u2f-api.js google/this.patch -o lib/generated-google-u2f-api.js
44

55
node_modules/.bin/rimraf dist
6-
76
node_modules/.bin/tsc -p .
8-
97
find test lib -name '*.js' | cpio -pdm dist/
8+
9+
patch lib/generated-google-u2f-api.js < google/modules.patch
10+
11+
node_modules/.bin/rimraf dist-bundle
12+
node_modules/.bin/tsc -p tsconfig.bundle.json
13+
find test lib -name '*.js' | cpio -pdm dist-bundle/

test/u2f-api/index.ts

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
declare var global: any;
42
declare var require: any;
53

@@ -41,8 +39,8 @@ type KeyValues = Array< KeyValue >;
4139
class MonkeyPatcher
4240
{
4341
_object: any;
44-
_values: Array< string >;
45-
_overwrittenValues: KeyValues;
42+
_values: Array< string > = [ ];
43+
_overwrittenValues: KeyValues = [ ];
4644

4745
constructor( obj: any )
4846
{
@@ -133,7 +131,7 @@ interface MockProps
133131

134132
function handleTimeout(
135133
props: MockProps,
136-
timeout,
134+
timeout: number,
137135
fn: ( ) => any
138136
)
139137
: Promise< any >
@@ -161,11 +159,11 @@ function u2fMock( props: MockProps = { } )
161159

162160
return {
163161
sign(
164-
appId,
165-
challenge,
162+
appId: string,
163+
challenge: any,
166164
registeredKeys: Array< u2fApi.RegisteredKey >,
167-
cbNative,
168-
timeout
165+
cbNative: ( ) => void,
166+
timeout: number
169167
)
170168
{
171169
return handleTimeout( props, timeout, ( ) =>
@@ -186,11 +184,11 @@ function u2fMock( props: MockProps = { } )
186184
.then( cbNative );
187185
},
188186
register(
189-
appId,
187+
appId: string,
190188
registerRequests: Array< FakeRequest >,
191189
signRequests: Array< FakeRequest >,
192-
cbNative,
193-
timeout
190+
cbNative: ( ) => void,
191+
timeout: number
194192
)
195193
{
196194
return handleTimeout( props, timeout, ( ) =>
@@ -229,7 +227,7 @@ function wrappedTest(
229227
{
230228
const mock = ( props || { } ).mock || { };
231229

232-
dom.window.u2f = u2fMock( );
230+
( < any >dom.window ).u2f = u2fMock( );
233231
}
234232

235233
const gmp = new GlobalMonkeyPatcher( );

tsconfig.bundle.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"declaration": true,
5+
"lib": [ "es2015", "es2017", "dom" ],
6+
"outDir": "dist-bundle",
7+
"sourceMap": true,
8+
"module": "es6",
9+
"target": "es5"
10+
},
11+
"include": [
12+
"external.d.ts",
13+
"index.bundle.ts",
14+
"src"
15+
]
16+
}

tsconfig.json

+2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
"lib": [ "es2015", "es2017", "dom" ],
55
"outDir": "dist",
66
"sourceMap": true,
7+
"strict": true,
78
"module": "CommonJS",
89
"target": "es5"
910
},
1011
"include": [
12+
"external.d.ts",
1113
"index.ts",
1214
"src",
1315
"test"

0 commit comments

Comments
 (0)