Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarim/avrov8
avro phonetic javascript implementation in v8 engine
https://github.com/sarim/avrov8
Last synced: 10 days ago
JSON representation
avro phonetic javascript implementation in v8 engine
- Host: GitHub
- URL: https://github.com/sarim/avrov8
- Owner: sarim
- Created: 2012-12-20T17:58:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-09T10:29:07.000Z (almost 11 years ago)
- Last Synced: 2023-03-14T12:01:24.741Z (over 1 year ago)
- Language: JavaScript
- Size: 10.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#First Install V8
brew install v8#compile the library
c++ -shared -lv8 skv8.cpp -o libskv8.so#compile the test code
c++ -L. -lskv8 skv8test.cpp#run the test code
./a.outNB: avrov8.cpp and avrov8.h is the skv8.cpp with the jni bridge included. Basically skv8.cpp is for testing, after test is done changes should to exported to avrov8.cpp.