airdcpp-web / airdcpp-release-validator

AirDC++ extension that performs various validations for release directories
1 stars 3 forks source link

Local installation #3

Closed doobnet closed 7 years ago

doobnet commented 7 years ago

I've done some modifications to this extension locally that I don't won't to make publicly available (or at least or not ready yet). I've tried running the extension using npm run build and npm start, which works fine. The extension is registered and shows up in the client.

How can I install the extension so I can manage (start and stop) it from within the client without publishing to the npm repository? Is it enough to copy some files to the extension folder in the client config directory? In that case, which files do I need and is it enough to compile using npm run build?

I'm completely new to Node and npm.

maksis commented 7 years ago

Yeah, running npm run build and copying the bundled files from dist will be enough

doobnet commented 7 years ago

Yes, that worked, thanks.