From ffc5030688d4846312d9ba4683937cab27fb617d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Ple=C3=9F?= Date: Tue, 22 Jan 2013 13:18:05 +0100 Subject: [PATCH] cleanup, created a readme.md --- .gitignore | 4 +- .idea/.name | 1 + .idea/compiler.xml | 25 ++++++ .idea/copyright/profiles_settings.xml | 5 ++ .idea/encodings.xml | 5 ++ .idea/misc.xml | 75 ++++++++++++++++ .idea/modules.xml | 9 ++ .idea/scopes/scope_settings.xml | 5 ++ .idea/uiDesigner.xml | 125 ++++++++++++++++++++++++++ .idea/vcs.xml | 7 ++ fetcher.iml | 10 +++ package.json | 14 +++ readme | 6 -- readme.md | 17 ++++ 14 files changed, 300 insertions(+), 8 deletions(-) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/scopes/scope_settings.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 fetcher.iml create mode 100644 package.json delete mode 100644 readme create mode 100644 readme.md diff --git a/.gitignore b/.gitignore index e47ca26..1dcfb4c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ node_modules/ -.idea/ -*.iml \ No newline at end of file +.idea/workspace.xml +.idea/tasks.xml \ No newline at end of file diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..bb199f7 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +fetcher \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b22c943 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,25 @@ + + + + + + diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..3572571 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..e206d70 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..a712a20 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + 1.6 + + + + + + + + + diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e6a3fc6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml new file mode 100644 index 0000000..922003b --- /dev/null +++ b/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..3b00020 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..275077f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/fetcher.iml b/fetcher.iml new file mode 100644 index 0000000..284429d --- /dev/null +++ b/fetcher.iml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..58c22f2 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "chaosc-fetcher", + "version": "0.0.1", + "private": true, + "scripts": { + "start": "nodemon cosmfetcher.js" + }, + "dependencies": { + "assert": "*", + "restify": "*", + "node-osc": "*", + "dateformat": "*" + } +} \ No newline at end of file diff --git a/readme b/readme deleted file mode 100644 index ed1b6f7..0000000 --- a/readme +++ /dev/null @@ -1,6 +0,0 @@ -install nodejs and npm - -install node packages with npm - -npm install node-osc restify - diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4ad3826 --- /dev/null +++ b/readme.md @@ -0,0 +1,17 @@ +COSM.com fetcher to OSC +============== + +This small script (cosmfetcher.js) is capable of fetching feeds from cosm.com and +sending the contents into OSC messages. + +Installation +-------------- + +To use this software you need node.js with npm installed. Simply run + + npm update + +to fetch the needed dependencies. Run the program with + + nodemon cosmfetcher.js +