This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3577ebf
commit ec95f35
Showing
4 changed files
with
152 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## v0.3.0 [UNRELEASED] | ||
## v0.3.0 [2017-03-21] | ||
|
||
### Breaking changes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# goja function | ||
|
||
`goja()` creates a JavaScript VM that receives and sends data through the defined javascript function for processing. The parameter passed to the function has been converted from a go map[string]interface{} to a JS object of the following form: | ||
|
||
```JSON | ||
{ | ||
"ns":"message.namespace", | ||
"ts":12345, // time represented in milliseconds since epoch | ||
"op":"insert", | ||
"data": { | ||
"id": "abcdef", | ||
"name": "hello world" | ||
} | ||
} | ||
``` | ||
|
||
***NOTE*** when working with data from MongoDB, the _id field will be represented in the following fashion: | ||
|
||
```JSON | ||
{ | ||
"ns":"message.namespace", | ||
"ts":12345, // time represented in milliseconds since epoch | ||
"op":"insert", | ||
"data": { | ||
"_id": { | ||
"$oid": "54a4420502a14b9641000001" | ||
}, | ||
"name": "hello world" | ||
} | ||
} | ||
``` | ||
|
||
### configuration | ||
|
||
```javascript | ||
goja({"filename": "/path/to/transform.js"}) | ||
``` | ||
|
||
### example | ||
|
||
message in | ||
```JSON | ||
{ | ||
"_id": 0, | ||
"name": "transporter", | ||
"type": "function" | ||
} | ||
``` | ||
|
||
config | ||
```javascript | ||
goja({"filename":"transform.js"}) | ||
``` | ||
|
||
transform function (i.e. `transform.js`) | ||
```javascript | ||
function transform(doc) { | ||
doc["data"]["name_type"] = doc["data"]["name"] + " " + doc["data"]["type"]; | ||
return doc | ||
} | ||
``` | ||
|
||
message out | ||
```JSON | ||
{ | ||
"_id": 0, | ||
"name": "transporter", | ||
"type": "function", | ||
"name_type": "transporter function" | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# otto function | ||
|
||
`otto()` creates a JavaScript VM that receives and sends data through the defined javascript function for processing. The parameter passed to the function has been converted from a go map[string]interface{} to a JS object of the following form: | ||
|
||
```JSON | ||
{ | ||
"ns":"message.namespace", | ||
"ts":12345, // time represented in milliseconds since epoch | ||
"op":"insert", | ||
"data": { | ||
"id": "abcdef", | ||
"name": "hello world" | ||
} | ||
} | ||
``` | ||
|
||
***NOTE*** when working with data from MongoDB, the _id field will be represented in the following fashion: | ||
|
||
```JSON | ||
{ | ||
"ns":"message.namespace", | ||
"ts":12345, // time represented in milliseconds since epoch | ||
"op":"insert", | ||
"data": { | ||
"_id": { | ||
"$oid": "54a4420502a14b9641000001" | ||
}, | ||
"name": "hello world" | ||
} | ||
} | ||
``` | ||
|
||
### configuration | ||
|
||
```javascript | ||
otto({"filename": "/path/to/transform.js"}) | ||
// transform() is also available for backwards compatibility reasons but may be removed in future versions | ||
// transform({"filename": "/path/to/transform.js"}) | ||
``` | ||
|
||
### example | ||
|
||
message in | ||
```JSON | ||
{ | ||
"_id": 0, | ||
"name": "transporter", | ||
"type": "function" | ||
} | ||
``` | ||
|
||
config | ||
```javascript | ||
otto({"filename":"transform.js"}) | ||
``` | ||
|
||
transform function (i.e. `transform.js`) | ||
```javascript | ||
module.exports=function(doc) { | ||
doc["data"]["name_type"] = doc["data"]["name"] + " " + doc["data"]["type"]; | ||
return doc | ||
} | ||
``` | ||
|
||
message out | ||
```JSON | ||
{ | ||
"_id": 0, | ||
"name": "transporter", | ||
"type": "function", | ||
"name_type": "transporter function" | ||
} | ||
``` |