Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aozd4v/cloudflare-workers-kv-dotnet-client
Cloudflare Workers KV Client for .NET
https://github.com/aozd4v/cloudflare-workers-kv-dotnet-client
Last synced: 27 days ago
JSON representation
Cloudflare Workers KV Client for .NET
- Host: GitHub
- URL: https://github.com/aozd4v/cloudflare-workers-kv-dotnet-client
- Owner: aozd4v
- License: mit
- Created: 2019-04-28T13:01:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:29:09.000Z (about 2 years ago)
- Last Synced: 2024-10-13T11:27:25.096Z (2 months ago)
- Language: C#
- Homepage:
- Size: 361 KB
- Stars: 10
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Cloudflare Workers KV Client for .NET
===========================![build status](https://travis-ci.org/aozd4v/cloudflare-workers-kv-dotnet-client.svg?branch=master)
.NET platform compatibility
---------------------------This version is compatible with .NET Standard 1.3-2.0.
Quick setup
-----------1. Use [NuGet](http://docs.nuget.org/docs/start-here/using-the-package-manager-console) to add the .NET SDK to your project:
Install-Package CloudflareWorkersKv.Client
2. Import the package:
using CloudflareWorkersKv.Client;
3. Create a new client with your credentials:
ICloudflareWorkersKvClient kvClient = new CloudflareWorkersKvClient("email", "authKey", "accountId", "namespaceId");