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

@neomeprealpha/widget

v0.0.4

Published

Messaging + Excel + Drive = Accessible and affordable automation.

Downloads

5

Readme

Neome virtual assistant

Messaging + Excel + Drive = Accessible and affordable automation.

Neome is a conversational automation platform built for enterprises of any size, from one person to ten thousand.

Neome virtual assistant is javascript library which helps you to integrate neome app in your project.

  • Demo : https://www.orgbeat.com/docs/task-list/try-it

Documentation

Types

  • NeomeWidgetEmbed
  • NeomeWidgetFloating
  • NeomeWidgetDeeplink

Methods

The methods are self-explanatory, here's a small overview on all the available methods:

  • embed(config:NeomeWidgetEmbed): () => void

    • embed neome app in element and return callback which removes the app from element.
  • floating(config:NeomeWidgetFloating): () => void

    • floats the neome app in element and return callback which removes the app from element.
  • embedDeeplink(config:NeomeWidgetDeeplink): () => void

    • embed neome deeplink in element and return callback which removes the deeplink from element.

Config NeomeWidget

This is main config which is super class of NeomeWidgetEmbed and NeomeWidgetFloating.

NeomeWidgetEmbed has same config as NeomeWidget.

| Name | Value | Description | |-------------------------|-----------------------|----------------------------------------------------------------------------------------------------------------------| | id (required) | string | id is an id of virtual assistant, it must be same of element id in which you want to embed or float the app. | | hostUrl (required) | string | if you have on premise plan then use url of your server else use https://web.neome.ai . | | allowPersonalChat | boolean | Filter all enterprise groups in app and only allows personal chat like local groups and normal chats . | | demoFlag | boolean | Demo flag prevents editing in app. | | filterEntId | string | Filter specific enterprise in app. | | selectGroupId | string | Preselect group as the app opens. | | selectGroupIdBackButton | boolean | Allow to go back if group is pre selected. | | allowProduction | boolean | Allow to view production in app. | | allowStore | boolean | Allow to view store in app. | | allowStudio | boolean | Allow to view studio in app. | | allowTerminal | boolean | Allow to view terminal in app. | | userCredentials | IWidgetCredential[] | Array of IWidgetCredential, it will select random credentials and will auto sign in in the app |

Config NeomeWidgetFloating

| Name | Value | Description | |-----------------------|-----------|----------------------------------------------------------------------------------------------------------------------| | id (required) | string | id is an id of virtual assistant, it must be same of element id in which you want to embed or float the app. | | disableBadgeCount | boolean | Disable badge count number in floating button | | floatingButtonIconSrc | string | Choose any image as an icon for floating button. | | widgetHeight | number | Height of virtual assistant popup (default 650). | | widgetWidth | number | Width of virtual assistant popup (default 350). |

Config NeomeWidgetDeeplink

| Name | Value | Description | |--------------------|-----------------------|----------------------------------------------------------------------------------------------------------------| | id (required) | string | id is an id of virtual assistant, it must be same of element id in which you want to embed the deeplink. | | hostUrl (required) | string | url of deeplink you want to embed. | | userCredentials | IWidgetCredential[] | Array of IWidgetCredential, it will select random credentials and will auto sign in in the app |

Installation

There are two ways of neome virtual assistant :

(1) Direct react component

(2) Insert script on your website

(1) Direct react component

yarn add @neomeprealpha/widget

OR

npm i @neomeprealpha/widget

Embedding neome in element

import {embed, NeomeWidgetEmbed} from "@neomeprealpha/widget";
import {useEffect} from "react";

function EmbedNeome()
{
  const id = "neomeEmbed"
  useEffect(() =>
  {
    const remove = embed({
      id: id,
      hostUrl: "https://web.neome.ai",
      allowPersonalChat: true,
      allowTerminal: true,
      selectGroupId: "groupId",
      selectGroupIdBackButton: true,
      filterEntId: "entId"
    } as NeomeWidgetEmbed)

    return () =>
    {
      remove();
    }
  }, [])

  return (
    <div
      id={id}
      style={{
        width: "300px",
        height: "600px",
      }}
    >
    </div>
  );
}

// Points to remember 👇🏻
/* 
  👉🏻  config id and element in which you want to render must be same
  👉🏻  Don't forget to include width and height in which element you are embeding
      minimun width is 280 and minimum height is 400 to render 
  👉🏻  "embed" function returns a callback which removes the app from element (optional)
*/ 

Floating neome in element

import {floating, NeomeWidgetFloating, IWidgetCredential} from "@neomeprealpha/widget";
import {useEffect} from "react";

function FloatingNeome()
{
  const id = "neomeFloating"
  useEffect(() =>
  {
    const remove = floating({
      id: id,
      hostUrl: "https://web.neome.ai",
      allowStudio: true,
      disableBadgeCount: true,
      widgetWidth: 400,
      widgetHeight: 700,
      userCredentials: [
        {
          handle: "[email protected]",
          password: "password"
        }
      ] as IWidgetCredential[]
    } as NeomeWidgetFloating)

    return () =>
    {
      remove();
    }
  }, [])

  return (
    <div
      id={id}

      // position element however want to display anywhere in screen
      // here the virtual assistant is positioned to bottom right
      style={{
        position: "fixed",
        bottom: "32px",
        right: "32px"
      }}
    >
    </div>
  );
}

// Points to remember 👇🏻
/* 
  👉🏻  config id and element in which you want to render must be same
  👉🏻  "floating" function returns a callback which removes the app from element (optional)
*/ 

Embedding deeplink in element

import {embedDeeplink, NeomeWidgetDeeplink} from "@neomeprealpha/widget";
import {useEffect} from "react";

function EmebdDeeplink()
{
  const id = "neomeEmbedDeeplink"
  const hostUrl = "url_of_deeplink" // url of deeplink;

  useEffect(() =>
  {
    const remove = embedDeeplink({
      id: id,
      hostUrl: hostUrl
    } as NeomeWidgetDeeplink)

    return () =>
    {
      remove();
    }
  }, [])

  return (
    <div
      id={id}
      style={{
        width: "300px",
        height: "600px",
      }}
    >
    </div>
  );
}

// Points to remember 👇🏻
/* 
  👉🏻  config id and element in which you want to render must be same
*/ 

(2) Insert script on your website

Add https://cdn.jsdelivr.net/npm/@neomeprealpha/widget/dist/cdn.js in script tag, and you can use all the methods in your project.

<!doctype html>
<html lang="en">
  <head>
    <title>Using CDN</title>

    <!-- Add CDN script  -->
    <script
      src="https://cdn.jsdelivr.net/npm/@neomeprealpha/widget/dist/cdn.js"
      type="module"
    >
    </script>

    <script type="module">

      <!-- Here you can use embed, floating and embedDeeplink function -->
      embed({
        id: "neomeEmbed",
        allowPersonalChat: true,
        allowTerminal: true,
        selectGroupId: "groupId",
        filterEntId: "entId"
      });
    </script>
  </head>
  <body>
    <div
      id="neomeEmbed"
      style="width:1000px;height: 650px;"
    >
    </div>
  </body>
  <!--  
    Points to remember 👇🏻
    👉🏻 config id and element in which you want to render must be same
  -->
</html>

License

MIT License

Copyright (c) 2023 Neome

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.