Socket
Book a DemoInstallSign in
Socket

atom-socket

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atom-socket

Share websockets in Atom Packages

0.0.9
latest
npmnpm
Version published
Weekly downloads
6
Maintainers
2
Weekly downloads
 
Created
Source

AtomSocket

Share websockets in Atom Packages.

How It Works

AtomSocket uses Atom's localStorage API (via page-bus) to share websocket connections in Atom packages across render processes.

Install

npm install atom-socket --save

Usage

const AtomSocket = require('atom-socket')

const socket = new AtomSocket('term', 'wss://ide.learn.co:443/terminal')

socket.on('error', (err) => {
  console.error(err)
})

socket.on('open', () => {
  console.log('Client Connected')
})

socket.on('close', () => {
  console.log('Client Closed')
})

socket.on('message', (msg) => {
  console.log(msg)
})

socket.on('open:cached', () => {
  console.log('Client Connected through Existing WebSocket')
})

socket.send('hello world')

socket.close()

socket.reset()

License

MIT Licensed

FAQs

Package last updated on 28 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.