diff --git a/README.md b/README.md index 62c959c3..ac4294a7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rpc_ts: Remote Procedure Calls in TypeScript made simple 🤞 -[![CircleCI](https://circleci.com/gh/aiden/rpc_ts/tree/master.svg?style=svg)](https://circleci.com/gh/aiden/rpc_ts/tree/master) [![Coverage Status](https://coveralls.io/repos/github/aiden/rpc_ts/badge.svg?branch=master)](https://coveralls.io/github/aiden/rpc_ts?branch=master) [![npm version](https://badge.fury.io/js/rpc_ts.svg)](https://badge.fury.io/js/rpc_ts) [![typescript](./docs/typescript.svg)](https://aleen42.github.io/badges/src/typescript.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) +[![Maintained by aiden.ai](https://img.shields.io/badge/maintained%20by-aiden.ai-blue.svg)](https://aiden.ai) [![CircleCI](https://circleci.com/gh/aiden/rpc_ts/tree/master.svg?style=svg)](https://circleci.com/gh/aiden/rpc_ts/tree/master) [![Coverage Status](https://coveralls.io/repos/github/aiden/rpc_ts/badge.svg?branch=master)](https://coveralls.io/github/aiden/rpc_ts?branch=master) [![npm version](https://badge.fury.io/js/rpc_ts.svg)](https://badge.fury.io/js/rpc_ts) [![typescript](./docs/typescript.svg)](https://aleen42.github.io/badges/src/typescript.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) rpc_ts is a framework for doing typesafe [Remote Procedure Calls (RPC)](https://en.wikipedia.org/wiki/Remote_procedure_call) in TypeScript. It uses no [Domain-Specific Language](https://en.wikipedia.org/wiki/Domain-specific_language) such as [Protocol Buffers](https://developers.google.com/protocol-buffers/) or [Apache Thrift](https://thrift.apache.org/): the services are all defined using the powerful TypeScript type system. This approach is particularly suitable for shortening the development cycle of isomorphic web applications that rely on TypeScript for both frontend and backend development.