# Installation
Create an account on Nop (opens new window) and create a project with your domain name.
Include the Nop SDK before the
</head>
tag:
<script src="https://nop.is/js/sdk.js"></script>
- Init the SDK with the secret token of your project. You can find the token in the projects list or when you edit them.
<script src="https://nop.is/js/sdk.js"></script>
<script>
Nop.init({
token: '<your_token_here>',
});
</script>