Skip to content

You hear "Hello world" when you call a number

Notifications You must be signed in to change notification settings

g0kul/hello-world-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello World for Node.js

Simply says "Hello World" upon calling a number.

Running the Project on Your Machine

To run this project on your computer, download or clone the source. You will also need to download and install Node.js , which should also install npm. You will also need to sign up for a KooKoo account if you don't have one already.

git clone git@github.com:kookootuts/hello-world-node.git

Install Dependencies

Navigate to the project directory in your terminal and run:

npm install

This should install all of the project dependencies from npm into a local node_modules folder.

Running the Project

To launch the application, you can use node . in the project's root directory. You might also consider using nodemon for this. It works just like the node command, but automatically restarts your application when you change any source code files.

npm install -g nodemon
nodemon .

What is KooKoo

KooKoo is an interface between your web application and the caller. It takes phone commands from you and executes them on your behalf to the caller. The best way to think of KooKoo is as just another web page in your application. Only difference is, the web page is accessible from the phone rather than the browser.

How does KooKoo work

  • Caller calls the KooKoo number
  • KooKoo informs your application (HTTP request)
  • You tell KooKoo what to do (Play some text, collect input, send sms, record etc)(XML Response)
  • HTTP helpers (redirection, caching, etc)
  • KooKoo performs the action on your behalf
  • KooKoo sends you the result of the action to your application (HTTP Request).

KooKoo Challenges

  • KooKoo Mashup Challenge: Use any publically available API such as Facebook or Twitter API, Google location API etc. along with the KooKoo API to create cool products and solutions.

Important Links

About

You hear "Hello world" when you call a number

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published