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

newbot

v1.1.0

Published

NewBot Framework is an open source Javascript framework for building chatbots

Downloads

133

Readme

**NewBot Framework is an open source Javascript framework for building chatbots

Creating a conversational system can take a long time. The goal of NewBot Framework: to give all the means to realize chatbots / voicebots as quickly and as easily as possible

Docs

Last version

Why not use Microsoft BotFramework or BotKit?

The approach is completely different from these frameworks. NewBot Framework is designed to create conversational systems without worrying about the final platform.

We offer a framework, a skill structure and the means to test your bot.

5 good reasons to use NewBot Framework

Why NewBot Framework

  • Modules. A skill is an independent module. This helps structure the project and share skills
  • NLP. Native NLP, external services (DialogFlow, NewBot Cloud, etc.) or your own NLP system
  • Easy PWA integration. Create an offline chatbot with PWA
  • Unit tests. Create powerful unit tests
  • Internationalization. Easily integrate chatbot responses into multiple languages

Installation

npx degit newbotjs/template my-chatbot
cd my-chatbot
npm install
npm run dev

Usage

  • main.converse
@Event('start')
start() {
    > Hello
}
  • main.js
import code from './main.converse'

export default {
    code
}

License

MIT

Changed

2021-09-08

Set the version of NewBot. Works in WebWorkers

2020-02-19

  • Fix several bugs

2020-02-06

  • It is possible to train the chatbot on the fly
  • The training now uses version 4 of the NLPJS module. The generated model is therefore different
  • 1 additional browser-side file is generated (dist/newbot.with-nlp.[min].js). NLPJS content is integrated into the final file