Add basic readme

master
Paul Loyd 2017-10-29 02:15:03 +03:00
parent 27629263c4
commit 61a47ce2ce
1 changed files with 40 additions and 0 deletions

40
README.md Normal file
View File

@ -0,0 +1,40 @@
# flow2avro
## Example
Input:
```javascript
$ ./bin/flow2avro -
interface Foo {
foo: string,
bar: ?number,
baz: 'one' | 'two',
mix: 'one' | 'two' | number,
}
```
Output:
```javascript
{
Foo: {
type: 'record',
fields: [
{ name: 'foo', type: 'string' },
{ name: 'bar', type: [ 'null', 'double' ] },
{ name: 'baz', type: { type: 'enum', symbols: [ 'one', 'two' ] } },
{ name: 'mix', type: [
'double',
{ type: 'enum', symbols: [ 'one', 'two' ] }
] }
],
name: 'Foo'
}
}
```
## TODO:
* Tests.
* Generics.
* Namespaces.
* Mixed type.