Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more β†’
Socket
Log inDemoInstall

@sapphire/plugin-hmr

Package Overview
Dependencies
2
Maintainers
3
Versions
288
Issues
File Explorer

Advanced tools

@sapphire/plugin-hmr

Plugin for @sapphire/framework for hot module reloading for pieces

    2.0.0latest
    GitHub

Version published
Maintainers
3
Weekly downloads
972
decreased by-19.67%

Weekly downloads

Readme

Source

Sapphire Logo

@sapphire/plugin-hmr

Plugin for @sapphire/framework for super-speed HMR.

GitHub codecov npm bundle size npm

Description

This plugin provides a HMR (Hot Module Replacement) feature for @sapphire/framework. This allows you to add, delete, and update commands, listeners, and other pieces without having to restart your bot. This allows for rapid iteration and prototyping without your bot slowing you down.

Features

  • Fully ready for TypeScript!
  • Includes ESM ready entrypoint
  • Easy to use

Installation

@sapphire/plugin-hmr depends on the following packages. Be sure to install these along with this package!

You can use the following command to install this package, or replace npm install with your package manager of choice.

npm install @sapphire/plugin-hmr @sapphire/framework

Usage

JavaScript

In your main or setup file, register the plugin:

require('@sapphire/plugin-hmr/register');

Or if you want to make sure the plugin is only loaded in development, you can register it dynamically like so:

require('@sapphire/plugin-hmr/register'); const client = new SapphireClient({ /* your bot options */ hmr: { enabled: process.env.NODE_ENV === 'development' } }); async function main() { await client.login(); } void main();

TypeScript

In your main or setup file, register the plugin:

import '@sapphire/plugin-hmr/register';

Or if you want to make sure the plugin is only loaded in development, you can register it dynamically like so:

import '@sapphire/plugin-hmr/register'; const client = new SapphireClient({ /* your bot options */ hmr: { enabled: process.env.NODE_ENV === 'development' } }); async function main() { await client.login(); } void main();

In order for HMR to pick up your compiled JavaScript files, you will need to recompile your code. To that end, we will configure a dev script in package.json scripts that runs build in parallel with start:

"scripts": { "dev": "run-p watch start", "build": "tsc", "watch": "tsc --watch", "start": "node dist/index.js" }

Note: This uses the run-p script which is part of npm-run-all

Note 2: Please do note that because the processes are started simultaneously you should run build at least once before running dev, otherwise the start process will fail because there are no files to run just yet.

then run your bot using the dev script. You can replace npm with your package manager of choice.

npm run start

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, Paypal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Jeroen Claassens

πŸ’» πŸš‡ πŸ“†

Nejc Drobnic

πŸ’» πŸ“–

Antonio RomΓ‘n

πŸ’»

Vlad Frangu

πŸ‘€

depfu[bot]

🚧

dependabot[bot]

🚧

allcontributors[bot]

πŸ“–

Tyler J Russell

πŸ’» πŸ“–

Stitch07

πŸ’» πŸ›

PlatinBae

πŸ“–

Kaname

πŸ’» πŸ“–

Elliot

πŸ’»

Lioness100

πŸ’» πŸ“–

UndiedGamer

πŸ’»

Feralheart

πŸ’»

Jurien Hamaker

πŸ’»

renovate[bot]

🚧

WhiteSource Renovate

🚧

c43721

πŸ’»

megatank58

πŸ’»

FC

πŸ’»

Just a Badly Drawn TABS Dude

πŸ’»

newt :D

πŸ’»

Mzato

πŸ’»

Harry Allen

πŸ’»

Julian

πŸ’»

Krish

πŸ’»

Parbez

πŸ’»

ricardooow

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Last updated on 20 Aug 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc