# scroll.io

> Scroll page using socket.io (share you webpage)

Latest version **1.0.6** (published 2021-05-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install scroll.io
pnpm add scroll.io
yarn add scroll.io
bun add scroll.io
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2021-05-30 |
| First published | 2016-07-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 131.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Cesar Casas |
| Maintainers | lortmorris |
| Keywords | scroll, socket.io, http |

## Links

- npm: https://www.npmjs.com/package/scroll.io
- Repository: https://github.com/lortmorris/scroll.io
- Homepage: https://github.com/lortmorris/scroll.io#readme
- Issues: https://github.com/lortmorris/scroll.io/issues
- npm.io page: https://npm.io/package/scroll.io

## Dependencies (3)

- [debug](https://npm.io/package/debug.md) ^4.3.1
- [socket.io](https://npm.io/package/socket.io.md) ^4.1.2
- [socket.io-redis](https://npm.io/package/socket.io-redis.md) ^6.1.1

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 1.0.6 (latest) — 2021-05-30
- 1.0.5 — 2016-07-18
- 1.0.4 — 2016-07-18
- 1.0.3 — 2016-07-18
- 1.0.2 — 2016-07-18
- 1.0.1 — 2016-07-18
- 1.0.0 — 2016-07-13

## README

# scroll.io

This module allows to share the same document and events scroll between all connected users.
Scroll.io use "debug" module with "scroll" namespace

## Updates
[2016/07/18] now support for ratio screen!. New examples. Fixes Doc.

## install

```bash
$ npm install scroll.io
```

## Run examples
### Simple http server
```bash
$ cd scroll.io
$ node examples/http.js
```

open you browser and goto http://localhost:3058

### Using own socket.io instance and redis (for balance).



## Balance
If you want use AWS Balance, this is should be able using nginx: http://socket.io/docs/using-multiple-nodes/

## example

```javascript
const scrollio = require("scrollio");
const http = require("http");
const socket = require('socket.io');
const fs = require("fs");

const server  = http.createServer((req, res)=>{
    res.end(fs.readFileSync("./public/index.html"));
});

new scrollio(server);
server.listen(3000);

```

---
_Source: https://npm.io/package/scroll.io · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
