npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vchat

v0.9.12

Published

An experimental video chat server/client hybrid

Downloads

9

Readme

Video Chat

A program by: Michael Conaway

A standalone peer to peer video chat application written with Ember.js and NW.js.

This application does not require an external signaling server, it IS the signaling server as well as the video client.

(For now, it will auto-negotiate data-streams using public STUN servers. A future improvement is to implement STUN within the app as well.)

To Host: Simply click the "Host Conversation" button, and tell the app which port to listen on. Please note, that as a host you must setup port forwarding on your router to allow outside connections to make contact and setup a P2P stream share.

To Join: Simply click the "Join Conversation" button and dial-in to the host's external IP and listening port.

Prerequisites

You will need the following things properly installed on your computer to develop or build this application:

Development Setup

  • git clone <repository-url> this repository
  • change into the vchat directory
  • npm install
  • bower install

Running / Development

  • ember nw
  • This will build and launch the app in node-webkit (NW.js).

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember nw:test

    • This will build and test the app exclusively in node-webkit (NW.js).
  • ember nw:test --server

    • This will build and test the app in node-webkit (NW.js) as well as in ember's server mode.

Building

  • ember nw:package (defaults to production)
  • ember nw:package --environment development (dev releases)

Deploying

Running 'ember nw:package' will produce a standalone application within the build folder. Currently, builds are added to the folder using path <version>/<os type>/<app>.

Special Thanks

  • Ember.js Team [http://emberjs.com]
  • Node.js Team [https://nodejs.org]
  • Gridster.js Team [http://gridster.net/]
  • Uri.js Team [http://medialize.github.io/URI.js/]
  • Bootstrap Team [http://getbootstrap.com/]
  • Load Awesome CSS Team [http://github.danielcardoso.net/load-awesome/]
  • brzpegasus [https://github.com/brzpegasus/ember-cli-node-webkit]

Further Reading / Useful Links

  • ember.js

  • ember-cli

  • ember-cli-node-webkit

  • Development Browser Extensions

  • STUN server to allow the app to run it's own NAT breakthrough

    • https://github.com/enobufs/stun
  • For using the app without a private STUN server

    • http://stackoverflow.com/questions/20068944/webrtc-stun-stun-l-google-com19302
  • STUN list

    • http://olegh.ftp.sh/public-stun.txt
  • WebRTC info

    • http://blog.mgechev.com/2014/12/26/multi-user-video-conference-webrtc-angularjs-yeoman/