Npm run develop not found

Try running the following command.

strapi develop

Or simply access your package.json file and map the command ‘strapi develop’ to the npm command ‘develop’, like so.

...
    "scripts": {
        "develop": "strapi develop -- --watch-admin --clean",
        "start": "strapi start",
        "build": "strapi build",
        "strapi": "strapi",
    }