Socket
Socket
Sign inDemoInstall

react-aiwriter

Package Overview
Dependencies
470
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-aiwriter

Typewriter effect inspired by ChatGPT ⌨️


Version published
Weekly downloads
222
decreased by-23.71%
Maintainers
1
Install size
147 kB
Created
Weekly downloads
 

Readme

Source


React AIWriter

Inspired by the first versions interface of ChatGPT



Example app and usage

I've written an extensive blog post about the current state of AI and its implications on software jobs, in which I have used this library. Check it out! You can also run the included demo app locally:

$ git clone https://github.com/mxmzb/react-aiwriter.git
$ cd react-aiwriter && yarn
$ cd example && yarn
$ yarn dev

After installing the demo locally you can visit it at http://localhost:8000

Intro

As I (and probably half of Twitter) have been playing around with ChatGPT, I came to like the way ChatGPT was rendering the words successively in a typewriter style. I found TypewriterJS, but its configuration was too difficult to integrate arbitrary content from a CMS.

Installation

$ yarn add react-aiwriter

Quickstart

import AIWriter from "react-aiwriter";

export default () => (
  <AIWriter>
    <p>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
      labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
      laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
      voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
      non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </p>
  </AIWriter>
);

Documentation and API

AIWriter

The main slider container, where you want to put all your slider elements inside.

PropDefaultTypeDescription
childrennullReactNode[]Child elements. Should be text nodes
delay25numberThe time between nodes / words rendered in milliseconds
onFinish() => {}functionDo something after all nodes / words rendered

License

react-aiwriter is licensed under the MIT.

Keywords

FAQs

Last updated on 21 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc