iamhosseindhv / notistack

Highly customizable notification snackbars (toasts) that can be stacked on top of each other
https://notistack.com
Other
3.93k stars 298 forks source link

Who's using NOTISTACK? #274

Open iamhosseindhv opened 4 years ago

iamhosseindhv commented 4 years ago

Are you or your company using notistack publicly or behind the scenes?

Comment your company name, link to your website, or link to a repo using that's using notistack. Going to feature your name/work on the documentation website.

From a quick look on GitHub dependents page I was able to pick up some notables names:

Cristy94 commented 4 years ago

Thanks for creating notistack! I am using it for my (not-free) analytics platform, userTrack to show error and info messages.

iamhosseindhv commented 4 years ago

Thanks @Cristy94. Checked out your work, it's pretty neat. I use Hotjar for the documentation website. Glad to see smaller platforms offering quality products.

Keep up the good work 👍🏼

suren-atoyan commented 4 years ago

I've just integrated it into React-PWA 🎉

Lawlez commented 4 years ago

We're using notistack in management software for various federal offices, unfortunately this means we cant show you..

but love using it!

misshu1 commented 4 years ago

I'm using it on my personal project ElevenWindows.dev Notistack it's awesome 🤓

cyulin commented 4 years ago

I use notistack in our company's internal website, I hope this project gets better and better, thank you very much to the author of notistack

reconbot commented 4 years ago

I'm using notistack on https://telley.live/ a low latency streaming video site for video editors

keul commented 3 years ago

At B-Open we used notistack in the Data Tailor, a product we developed for EUMETSAT.

theshahzaib5 commented 3 years ago

when it would got support for MUI v5?

emolchanov commented 3 years ago

@theshahzaib5 for support MUIv5 use next version npm install notistack@next

emolchanov commented 3 years ago

@iamhosseindhv thanks for creating notistack! I'm using it in internal projects of my company and some pet projects.

saeedhemmati commented 3 years ago

@iamhosseindhv We are using from 2 years ago in our product. Thanks for this jewel

eddyrusso commented 1 year ago

Warning: validateDOMnesting(...):

My Resolution:

domRoot={typeof window !== "undefined" && document.getElementsByTagName("body")[0]}

 <SnackbarProvider
      maxSnack={3}
      autoHideDuration={2000}
      anchorOrigin={{
        vertical: "top",
        horizontal: "right",
      }}
     domRoot={typeof window !== "undefined" && document.getElementsByTagName("body")[0]} 
      {children}
    </SnackbarProvider>
nickojs commented 1 year ago

I'm using as my default notification system in my first SaaS. Usually I'd create my own context and logic, but this time I wanted something ready to use AND production level. This lib is the answer!