Skip to content

Commit

Permalink
feat: 4.0.0: node >= 20 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomurrent-softwaresolutions committed May 31, 2024
1 parent 2f0b19c commit 3594cdf
Show file tree
Hide file tree
Showing 5 changed files with 7,201 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/node_modules/
/npm-debug.log
/NO_GIT/

.idea/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $ npm install jssip-node-websocket --save
## Requirements

* [jssip](http://jssip.net) >= `v2.0.0`
* Node.js >= `v4.0.0`
* Node.js >= `v20.0.0`


## Usage
Expand Down
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

const debug = require('debug')('jssip-node-websocket');
const debugerror = require('debug')('jssip-node-websocket:ERROR');

const parse = require('url').parse;
const parse = require('url-parse');
const W3CWebSocket = require('websocket').w3cwebsocket;

class NodeWebSocket
Expand Down
Loading

0 comments on commit 3594cdf

Please sign in to comment.