# Installation

  1. Create an account on Nop (opens new window) and create a project with your domain name.

  2. Include the Nop SDK before the </head> tag:

<script src="https://nop.is/js/sdk.js"></script>
  1. 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>