@creditkarma/thrift-server-core
Version:
Thrift core library in TypeScript
65 lines (39 loc) • 2.1 kB
Markdown
for the other Thrift libraries. This will usually not be used directly. Usually consumers will get everything they need from the consuming libraries:
* [Thrift-Client](https://github.com/creditkarma/thrift-server/tree/master/packages/thrift-client)
* [Thrift-Server-Express](https://github.com/creditkarma/thrift-server/tree/master/packages/thrift-server-express)
* [Thrift-Server-Hapi](https://github.com/creditkarma/thrift-server/tree/master/packages/thrift-server-hapi)
```sh
$ npm install --save @creditkarma/thrift-server-core
```
For representing 64-bit integers in JavaScript we use the [node-int64 library](https://github.com/broofa/node-int64). We extend the base class from the library with static methods for working with 64-bit integers written as strings. These functions are largely taken from the apache thrift libs and added as static methods for convinience.
Given a string of decimal digits, return a `Int64` object instance.
```typescript
import { Int64 } from '@creditkarma/thrift-server-core'
const i64: Int64 = Int64.fromDecimalString("89374875")
```
```typescript
import { Int64 } from '@creditkarma/thrift-server-core'
const i64: Int64 = Int64.fromDecimalString("89374875")
const val: string = i64.toDecimalString()
// val === "89374875"
```
For consistency the `toDecimalString` method is also available statically on the `Int64` class. The static method can take a `number` or `Int64` instance.
```typescript
import { Int64 } from '@creditkarma/thrift-server-core'
const i64: Int64 = new Int64(64)
const val: string = Int64.toDecimalString(i64)
// val === "64"
```
* Support CompactProtocol, JsonProtocol and FramedTransport
For more information about contributing new features and bug fixes, see our [Contribution Guidelines](../../CONTRIBUTING.md).
External contributors must sign Contributor License Agreement (CLA)
## License
This project is licensed under [Apache License Version 2.0](./LICENSE)
Base package