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

@halfwork.cn/nextjs

v1.0.6

Published

可在您的 Next.js 网站上显示 half.done aiflows

Downloads

5

Readme

安装

npm install @halfwork.cn/nextjs

标准模式

import { Standard } from '@halfwork.cn/nextjs'

const App = () => {
  return (
    <Standard
      aiflow="lead-generation-copy-3luzm6b"
      style={{ width: '100%', height: '600px' }}
    />
  )
}

将创建一个宽度为 100% 和 高度为600px的容器

弹窗模式

import { Popup } from '@halfwork.cn/nextjs'

const App = () => {
  return <Popup aiflow="lead-generation-copy-3luzm6b" autoShowDelay={3000} />
}

此代码将在 3 秒后自动触发弹出窗口.

Open or Close a popup

您可以使用以下命令:

import { open } from '@halfwork.cn/nextjs'

open()
import { close } from '@halfwork.cn/nextjs'

close()
import { toggle } from '@halfwork.cn/nextjs'

toggle()

按钮模式

import { Bubble } from '@halfwork.cn/nextjs'

const App = () => {
  return (
    <Bubble
      aiflow="lead-generation-copy-3luzm6b"
      previewMessage={{
        message: 'I have a question for you!',
        autoShowDelay: 5000,
        avatarUrl: 'https://avatars.githubusercontent.com/u/16015833?v=4',
      }}
      theme={{
        button: { backgroundColor: '#0042DA', iconColor: '#FFFFFF' },
        previewMessage: { backgroundColor: '#ffffff', textColor: 'black' },
      }}
    />
  )
}

此代码将显示气泡,并在 5 秒后显示预览消息

打开或关闭预览消息

您可以使用以下命令:

import { showPreviewMessage } from '@halfwork.cn/nextjs'

Aiflow.showPreviewMessage()
import { hidePreviewMessage } from '@halfwork.cn/nextjs'

Aiflow.hidePreviewMessage()

打开或关闭聊天窗口

您可以使用以下命令:

import { open } from '@halfwork.cn/nextjs'

open()
import { close } from '@halfwork.cn/nextjs'

close()
import { toggle } from '@halfwork.cn/nextjs'

toggle()

其他配置

您可以通过添加“prefilledVariables”选项在嵌入代码中预填充机器人变量值。下面是一个示例:

import { Standard } from '@halfwork.cn/nextjs'

const App = () => {
  return (
    <Standard
      aiflow="lead-generation-copy-3luzm6b"
      style={{ width: '100%', height: '600px' }}
      prefilledVariables={{
        'Current URL': 'https://my-site/account',
        'User name': 'John Doe',
      }}
    />
  )
}

它将用“https:my-siteaccount”预填充“当前URL”变量,用“John Doe”预填充“用户名”变量。有关变量的更多信息:[here](editorvariables)。请注意,如果您的网站 URL 包含查询参数(即 https:halfwork.cn?User%20name=John%20Doe),变量将自动注入 aiflow。因此,无需手动将查询参数传输到机器人嵌入配置。