rnet

rnet is a socket framework that allows the client to interact with the server real-time

Usage no npm install needed!

<script type="module">
  import rnet from 'https://cdn.skypack.dev/rnet';
</script>

README

How to install

There is currently only one way to install Rnet: by installing it with npm. You can run:

npm install rnet

to install.

Once installed you need to connected it with your express application. This is an example:

express = require("express");
gen = require("gen");
app = express();
gen.open(app);

app.get("/",(req,res)=>{
  res.end("My awesome application")
});