Learn how to integrate Secryn into your web applications.
Secryn provides comprehensive tools for adding security features to your web applications.
Install Secryn via npm:
npm install secryn
import { Secryn } from 'secryn'
const secryn = new Secryn({
apiKey: 'your-api-key'
})
Implement secure authentication in your web applications:
import { SecrynProvider } from 'secryn/react'
function App() {
return (
<SecrynProvider apiKey={process.env.REACT_APP_SECRYN_KEY}>
{/* Your app */}
</SecrynProvider>
)
}
import { createSecryn } from 'secryn/vue'
const secryn = createSecryn({
apiKey: process.env.VUE_APP_SECRYN_KEY
})
app.use(secryn)