From 4978ae3047082859e30539518c8d6c7a6db82a35 Mon Sep 17 00:00:00 2001 From: rclarey Date: Wed, 16 Mar 2022 12:13:22 +0900 Subject: [PATCH] chore: format --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4aa176b..2d03c54 100644 --- a/README.md +++ b/README.md @@ -17,18 +17,20 @@ ## Features + - Supported commands - ✅ CONNECT - ❌ BIND - ✅ UDP ASSOCIATE - + - Supported authentication methods - No authentication - Username & password ## Usage + ```typescript -import { Client } from "https://deno.land/x/socks5/client.ts" +import { Client } from "https://deno.land/x/socks5/client.ts"; const config = { // hostname of the proxy server @@ -51,3 +53,4 @@ client.connect(connectOpts); Deno.listenDatagram(listenOpts); // with client.listenDatagram(listenOpts); +```