silentshield-js
v1.0.0
Published
Invisible bot protection for your forms — no CAPTCHA required. One line of code.
Maintainers
Readme
silentshield-js
Invisible bot protection for your forms — no CAPTCHA required.
Install
npm install silentshield-jsUsage
React
import { useEffect } from 'react';
import SilentShield from 'silentshield-js';
export default function App() {
useEffect(() => {
SilentShield.init('YOUR_SITE_KEY');
}, []);
return <YourApp />;
}Vue
import SilentShield from 'silentshield-js';
export default {
mounted() {
SilentShield.init('YOUR_SITE_KEY');
}
}Vanilla JS
<script src="https://unpkg.com/silentshield-js"></script>
<script>
SilentShield.init('YOUR_SITE_KEY');
</script>Get a site key
Sign up free at silent-shield-saa-s.replit.app
How it works
Once initialised, silentshield-js loads protect.js onto the page. It then silently monitors all forms — tracking timing, behaviour, and a hidden honeypot field. On submission, it scores the session and blocks bots before the form ever sends. Real users notice nothing.
