Skip to content

Commit

Permalink
Adding badges to READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
aholstenson committed Feb 4, 2018
1 parent 2a5fb6d commit 0fba1de
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Ataraxia

[![npm version](https://badge.fury.io/js/ataraxia.svg)](https://badge.fury.io/js/ataraxia)

Mesh networking with peer-to-peer messaging for NodeJS. Ataraxia connects
different NodeJS instances together and allows messages to be passed between
these instances. Some instances may act as routers for other instances to
Expand Down
3 changes: 3 additions & 0 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia

[![npm version](https://badge.fury.io/js/ataraxia.svg)](https://badge.fury.io/js/ataraxia)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia.svg)](https://david-dm.org/aholstenson/ataraxia)

Mesh networking with peer-to-peer messaging for NodeJS. Ataraxia connects
different NodeJS instances together and allows messages to be passed between
these instances. Some instances may act as routers for other instances to
Expand Down
3 changes: 3 additions & 0 deletions packages/local/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia-local

[![npm version](https://badge.fury.io/js/ataraxia-local.svg)](https://badge.fury.io/js/ataraxia-local)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia-local.svg)](https://david-dm.org/aholstenson/ataraxia-local)

Machine-local transport for [Ataraxia](https://github.com/aholstenson/ataraxia).
This transport connects together instances on the same machine via a Unix
socket.
Expand Down
3 changes: 3 additions & 0 deletions packages/services/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia-services

[![npm version](https://badge.fury.io/js/ataraxia-services.svg)](https://badge.fury.io/js/ataraxia-services)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia-services.svg)](https://david-dm.org/aholstenson/ataraxia-services)

Services with RPC and events for [Ataraxia](https://github.com/aholstenson/ataraxia).

This project provides a service layer on top of a Ataraxia network and allows
Expand Down
3 changes: 3 additions & 0 deletions packages/tcp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia-tcp

[![npm version](https://badge.fury.io/js/ataraxia-tcp.svg)](https://badge.fury.io/js/ataraxia-tcp)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia-tcp.svg)](https://david-dm.org/aholstenson/ataraxia-tcp)

TCP transport for [Ataraxia](https://github.com/aholstenson/ataraxia). This
transport discovers and automatically connects to other instances on the same
local network. Other peers are found using mDNS and DNS-SD that match the name
Expand Down
3 changes: 3 additions & 0 deletions packages/ws-client/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia-ws-client

[![npm version](https://badge.fury.io/js/ataraxia-ws-client.svg)](https://badge.fury.io/js/ataraxia-ws-client)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia-ws-client.svg)](https://david-dm.org/aholstenson/ataraxia-ws-client)

Client that connects to a [Ataraxia network](https://github.com/aholstenson/ataraxia)
using a websocket. This module makes it possible for NodeJS-instances (using
`ws`) and browsers (using Webpack, Browserify, JSPM or a similar packaging tool)
Expand Down
3 changes: 3 additions & 0 deletions packages/ws-server/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ataraxia-ws-server

[![npm version](https://badge.fury.io/js/ataraxia-ws-server.svg)](https://badge.fury.io/js/ataraxia-ws-server)
[![Dependencies](https://david-dm.org/aholstenson/ataraxia-ws-server.svg)](https://david-dm.org/aholstenson/ataraxia-ws-server)

Server that allows clients to connect to an [Ataraxia network](https://github.com/aholstenson/ataraxia)
via websockets. This implementation uses [ws](https://github.com/websockets/ws)
to serve the websockets. Clients may use a [websocket client](https://github.com/aholstenson/ataraxia/tree/master/packages/ws-client) to
Expand Down

0 comments on commit 0fba1de

Please sign in to comment.