7.14.1 • Published 29 days ago

@enonic-types/lib-websocket v7.14.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
29 days ago

Enonic XP lib-websocket TS types

TypeScript definitions for lib-websocket library of Enonic XP

Install

npm i --save-dev @enonic-types/lib-websocket

Use

Require and custom imports

To make require work out of the box, you must install and add the @enonic-types/global types. Aside from providing definitions for XP global objects, e.g. log, app, __, etc, requiring a library by the default path will return typed object.

tsconfig.json

{
  "compilerOptions": {
    "types": [
      "@enonic-types/global"
    ]
  }
}

example.ts

const {addToGroup, removeFromGroup, send, sendToGroup, getGroupSize} = require('/lib/xp/websocket');

More detailed explanation on how it works and how to type custom import function can be found here.

ES6-style import

If you are planning to use import in your code and transpile it with the default tsc TypeScript compiler, you'll need to add proper types mapping to your configuration.

tsconfig.json

{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "/lib/xp/websocket": ["node_modules/@enonic-types/lib-websocket"]
    }
  }
}

example.ts

import {addToGroup, removeFromGroup, send, sendToGroup, getGroupSize} from '/lib/xp/websocket';

Setting baseUrl and paths will allow the tsc to keep the valid paths in the resulting JavaScript files.

7.14.1

29 days ago

7.14.0

4 months ago

7.14.0-B3

4 months ago

7.14.0-RC1

4 months ago

7.14.0-B2

4 months ago

7.14.0-B1

5 months ago

7.13.5

5 months ago

7.13.3

8 months ago

7.13.4

6 months ago

7.13.1

10 months ago

7.13.2

9 months ago

7.13.0

10 months ago

7.13.0-RC1

11 months ago

7.13.0-B2

11 months ago

7.13.0-B3

11 months ago

7.13.0-B1

11 months ago

7.12.0-RC2

1 year ago

7.12.0-RC3

1 year ago

7.12.0-RC1

1 year ago

7.12.0-RC4

1 year ago

7.12.0-RC5

1 year ago

7.12.2

1 year ago

7.12.0

1 year ago

7.12.1

1 year ago

7.12.0-B1

1 year ago

7.11.3

1 year ago

7.11.1

1 year ago

7.11.2

1 year ago

7.11.0-RC1

2 years ago

7.11.0-RC3

2 years ago

7.11.0-RC4

2 years ago

7.11.0-B1

2 years ago

7.11.0-B3

2 years ago

7.11.0-B4

2 years ago

7.11.0

1 year ago

0.1.1

2 years ago

0.1.0

2 years ago