Giter VIP home page Giter VIP logo

natural-script's Introduction

natural-script Build Status

Natural-script is a script language to easily parse english expressions. It also includes a node.js implementation of a parser.

When you write a bot (slack bot, messenger bot, etc) you have to parse user inputs, classify it and extract information you need. It is easy to classify simple user sentences like hello, How are you?, What time is it in London ?. But it is quite harder when you want to extract complex information. Try for example to parse the date from the expression my appointment is planned for tomorrow at 2pm at home.

You could use Natural Language Processing but sometimes it is a bit overkill. Besides sometimes you expect very specific commands and NLP may be as strict as expected.

With natural-script, describe the request you expect with a simplified expression based on english words. These are some examples of natural-script language :

Hello
~hello
how are you
my email is {email}
go to {url:var1}

Getting started

For now, this project is only available for node.js because it uses natural.

# with npm
$ npm install natural-script

# with yarn
$ yarn add natural-script
import { parse } from 'natural-script'
(async () => {
  // parse returns a promise
  // await parse(<user input>, <pattern to match>)

  // by default parse accepts only strict equal strings
  (await parse('Hello', 'hello')) === false

  // ~ accepts similar words
  (await parse('Hello', '~hello')) === true
  (await parse('Hello', '~helo')) === true
  (await parse('Bonjour', '~hello')) === false

  // detects words and returns them
  (await parse('hello thibault', 'hello {word}')) === true
  (await parse('hello thibault', 'hello {word:name}')) === { name: 'foo' }

  // detects emails and returns them
  (await parse('my email is [email protected]', 'my email is {email}')) === true
  (await parse('my email is [email protected]', 'my email is {email:foo}')) === { foo: '[email protected]' }

  // detects urls and returns them
  (await parse('go to http://foo.com', 'go to {url}')) === true
  (await parse('go to http://foo.com', 'go to {url:bar}')) === { bar: 'http://foo.com' }
})()

Contribution

This project is only at the beginning so do not hesitate to contribute or propose improvements. Please follow guidelines.

License

This project is distributed on MIT license.

natural-script's People

Contributors

friedrith avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

natural-script's Issues

Duplicated name! What can we do?

Hello!

I'm the (...first?) NaturalScript Language creator. Well, or a second one, I don't know, I don't really mind.

This is it:

http://naturalscriptlanguage.com/

I don't know, I don't really care about changing the name, despite the domain.... But, well... just to say "hello".

Well, in fact, if you are really into this thing of the language, maybe we can talk a little about the current state of the art. It would be great to share and interchange views. Independently of the "names issue", I don't really mind about the name, even if you are interested in the domain we can talk

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.