blocktor
v1.1.0
Published
Block Tor Sessions
Downloads
3
Readme
NOTOR
Example:
const app=require("express")();
const notor = require("blocktor");
app.use(notor((res)=>{res.send("Tor not allowed");}));
app.get("/",(req,res)=>{
res.json({"You are not Using tor:)"});
});
app.listen(8080,()=>{console.log("Listen");});