preactjs / signals

Manage state with style in every framework
https://preactjs.com/blog/introducing-signals/
MIT License
3.79k stars 93 forks source link

Using signals without NPM module #275

Closed urizev closed 1 year ago

urizev commented 1 year ago

Hi,

Currently I am using Preact by importing it in the web browser like this:

<script src="https://unpkg.com/preact" />

And I would like to integrate signal in my application. I am looking for signals in unpkg but I cannot find it.

rschristian commented 1 year ago

Unpkg consumes from NPM, meaning every package is named the same.

@preact/signals -> https://unpkg.com/browse/@preact/signals/

urizev commented 1 year ago

Great! Thanks!