Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Wasmedge | 6,033 | 5 | a day ago | 6 | September 01, 2022 | 339 | apache-2.0 | C++ | ||
WasmEdge is a lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications. It powers serverless apps, embedded functions, microservices, smart contracts, and IoT devices. | ||||||||||
Awesome Learning Resources | 4,844 | 2 months ago | 4 | mit | ||||||
🔥 Awesome list of resources on Web Development. | ||||||||||
M3o | 2,233 | 2 | 6 days ago | 34 | September 10, 2022 | 34 | apache-2.0 | TypeScript | ||
Serverless Micro services cloud | ||||||||||
Weekly.manong.io | 1,909 | a year ago | 1 | |||||||
码农周刊 - 每周五发送,欢迎订阅!欢迎加入读者圈子,一起交流! | ||||||||||
Quillman | 643 | 22 days ago | 1 | mit | JavaScript | |||||
A chat app that transcribes audio in real-time, streams back a response from a language model, and synthesizes this response as natural-sounding speech. | ||||||||||
Chatgpt In Slack | 235 | 3 days ago | 7 | mit | Python | |||||
Swift demonstration of how to build a Slack app that enables end-users to interact with a ChatGPT bot | ||||||||||
Bootcamp 2021 | 165 | 9 months ago | 6 | mit | TypeScript | |||||
Become a Certified Unicorn Developer and Participant in the API Token Economy | ||||||||||
Netsaur | 140 | 2 days ago | 4 | mit | Rust | |||||
Powerful machine learning, accelerated by WebGPU | ||||||||||
Stacks | 109 | 49 | a day ago | 25 | February 03, 2023 | 131 | mit | TypeScript | ||
⚛️ Type-safe full-stack framework for Artisans. Develop modern clouds, apps & framework-agnostic libraries, faster. (site coming soon) | ||||||||||
Pragmaticai | 103 | a year ago | other | Makefile | ||||||
[Book-2019] Pragmatic AI: An Introduction to Cloud-based Machine Learning |
Serverless Micro services cloud
M3O transforms public APIs into smaller easier to use Micro services which you can explore, discover and consume as serverless building blocks. The platform generates unified api docs, client libraries and examples on top of Micro Services using protobuf to OpenAPI conversion and some custom tooling.
Here are the main features:
Here are a few APIs:
Authorization: Bearer [Token]
headerhttps://api.m3o.com/v1/*
.Grab your API token from the dashboard and export it
export M3O_API_TOKEN=xxxxxxx
curl \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"days": 2, "location": "London"}' \
https://api.m3o.com/v1/weather/Forecast
Find all the curl examples in m3o-sh
Import packages from go.m3o.com
import (
"go.m3o.com"
"go.m3o.com/weather"
)
Create a new client with your API token and call it
client := m3o.New(os.Getenv("M3O_API_TOKEN"))
rsp, err := client.Weather.Forecast(&weather.ForecastRequest{
Days: 2,
Location: "London",
})
fmt.Println(rsp, err)
Find all the Go examples in m3o-go
Install the m3o package
npm install m3o
Call app run like so
const m3o = require("m3o").default(process.env.M3O_API_TOKEN);
async function main() {
let rsp = await m3o.weather.forecast({
days: 2,
location: "London",
});
console.log(rsp);
}
main();
Find more JS examples in m3o-js
Install the cli
curl -fssl https://install.m3o.com/cli | /bin/bash
Example call
m3o weather forecast --location=London --days=2
See the m3o-cli for examples
APIs are developed using the Micro platform
If you're interested in self hosting contact us