npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

qvdomgqvdomg

v0.3.2

Published

- `profile` (Object) The personal information. ```json { "id":"913de90c-c15f-41ce-abb7-8376f8622ae9", "avatar":"https://picsum.photos/id/0/200/200", "name":"Mindy Zboncak", "bio":"cloth advocate" } ```

Downloads

42

Readme

props

  • profile (Object) The personal information.
{
 "id":"913de90c-c15f-41ce-abb7-8376f8622ae9",
 "avatar":"https://picsum.photos/id/0/200/200",
 "name":"Mindy Zboncak",
 "bio":"cloth advocate"
}
  • contacts {Array}
const contacts = [
  {
    "id":"8bd61e5b-1b89-4138-a780-0b87ca454551", // contact ID - required
    "avatar":"https://picsum.photos/id/20/200/200", // The src attribute for the img element.
    "name":"Jeremy Wunsch",
    "bio":"millet advocate"
  },
  {
    "id":"0fd37273-5092-43dc-831f-94be2759bec1",
    "avatar":"https://picsum.photos/id/40/200/200",
    "name":"Mrs. Gladys Quigley",
    "bio":"acid fan"
  },
  {
    "id":"204df535-3c09-4ec0-9ba2-631ebd10b5c8",
    "avatar":"https://picsum.photos/id/60/200/200",
    "name":"Brent Dooley",
    "bio":"fixture lover, environmentalist ❤️‍🩹"
  }
]
  • messages {Object} The key of the object is the ID of the contact. Value is the chat history sorted by time (the most recent chat is recorded at the end of the array).The purpose of designing the data structure in this way is to quickly find the chat history by the contact's ID.
const messages = {
  pinned:{
    "3763a725-ded4-45c5-aa04-bef43191999e": [
      {
        metadata:{
          id:"5c28e428-b717-4b6e-904d-54d6e133b3e6",
          senderId: "913de90c-c15f-41ce-abb7-8376f8622ae9",
          receiverId: "3763a725-ded4-45c5-aa04-bef43191999e",
          sendTime: 1710026806089,
          receiveTime: 1710026809089,
          type:"text"
        },
        content:{
          text:"Hello!Can you send me a photo of the sea?"
        },
        signature:""
      },
      {
        metadata:{
          id:"12f44f15-2402-425e-bba0-09cdc5c644d7",
          senderId: "3763a725-ded4-45c5-aa04-bef43191999e",
          receiverId: "913de90c-c15f-41ce-abb7-8376f8622ae9",
          sendTime: 1710038413089,
          receiveTime: 1710038415089,
          type:"image"
        },
        content:{
          src:"https://fastly.picsum.photos/id/14/1000/1000.jpg?hmac=oaPLPwNgk6TJdckR6XJ0nJZ37h4Lrk55bdBa6gHR9Fo"
        }
      }
    ]
  },
  regular:{
    "961035e9-ff53-47fa-a617-ee1befb9ca6e": [
      {
        metadata:{
          id:"1b36ef84-ad86-4ee9-9203-b094281ff7f2",
          senderId: "913de90c-c15f-41ce-abb7-8376f8622ae9",
          receiverId: "961035e9-ff53-47fa-a617-ee1befb9ca6e",
          sendTime: 1710029338841,
          receiveTime: 1710029343841,
          type:"text"
        },
        content:{
          text:"Yes, I went there last weekend. It's quite impressive!"
        },
        signature:""
      },
      {
        metadata:{
          id:"b64b3421-858c-489a-a0ee-85ab484e0dfc",
          senderId: "961035e9-ff53-47fa-a617-ee1befb9ca6e",
          receiverId: "913de90c-c15f-41ce-abb7-8376f8622ae9",
          sendTime: 1710045796841,
          receiveTime: 1710045798841,
          type:"text"
        },
        content:{
          text:"Definitely worth a visit. Also, are we still on for the hike this Saturday?"
        }
      }
    ]
  }
}
  • onProfileUpdated {function} The function will be called when the user edits their profile.
function onProfileUpdated(props) {
  console.log(props)
}

<Chat onProfileUpdated={onProfileUpdated}></Chat>
const props = {
  updatedProfile: {
    avatar:"data:image/jpeg;base64,/9j/4AAQS...rVx9YE/xGXJ/9k=", // base64 encoded image
    name:"Mindy Zboncak",
    bio:"cloth advocate"
  }
}
  • onSettingsUpdated {function} The function will be called when the user updates their settings.
function onSettingsUpdated(props) {
  console.log(props)
}

<Chat onSettingsUpdated={onSettingsUpdated}></Chat>
const props = {
  updatedSettings: {
    darkMode: true,
  }
}
  • onAddContact {function} The function will be called when the user adds a new contact.
function onAddContact(props) {
  console.log(props)
}

<Chat onAddContact={onAddContact}></Chat>
const props = {
  contactId: "8bd61e5b-1b89-4138-a780-0b87ca454551",
  contactRemark: "Jeremy Wunsch",
  additionalInfo: "cloth advocate"
}
  • onDeleteContact {function} The function will be called when the user deletes a contact.
function onDeleteContact(props) {
  console.log(props);
}

<Chat onDeleteContact={onDeleteContact}></Chat>
const props = {
  contactId: "8bd61e5b-1b89-4138-a780-0b87ca454551",
}
  • onEditContactRemark {function} The function will be called when the user edits a contact's remark.
function onEditContactRemark(props) {
  console.log(props);
}

<Chat onDeleteContact={onEditContactRemark}></Chat>
const props = {
  contactId: "8bd61e5b-1b89-4138-a780-0b87ca454551",
  remark: "Jeremy Wunsch",
}
  • onSendMessage {function} The function will be called when the user sends a message.
function onSendMessage(props) {
  console.log(props)
}

<Chat onSendMessage={onSendMessage}></Chat>
const props = {
  contactId: "8bd61e5b-1b89-4138-a780-0b87ca454551",
  type: "text",
  content: {
    text: inputText,
  }
}
  • onHandleFriendRequest {function} The function will be called when the user handles a friend request.
function onHandleFriendRequest(props) {
  console.log(props)
}

<Chat onHandleFriendRequest={onHandleFriendRequest}></Chat>
const props = {
  contactId: "8bd61e5b-1b89-4138-a780-0b87ca454551",
  isAccepted: true
}
  • onMessagePin {function} The function will be called when the user pins a message.
function onMessagePin(props) {
  console.log(props)
}

<Chat onMessagePin={onMessagePin}></Chat>
const props = {
  messageId: "5c28e428-b717-4b6e-904d-54d6e133b3e6",
}

onDeleteMessage {function} The function will be called when the user deletes a message.

function onDeleteMessage(props) {
  console.log(props)
}

<Chat onDeleteMessage={onDeleteMessage}></Chat>
const props = {
  messageId: "5c28e428-b717-4b6e-904d-54d6e133b3e6",
}