dehli / aws-cljs

Thin cljs wrapper around the node.js aws-sdk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-cljs

Warning: This library is in alpha!

Usage

(ns my-ns.core
  (:require [dev.dehli.aws :as aws]))

(def db-client
  (aws/client [:DynamoDB :DocumentClient]
              {:params {:TableName "foo"}))

(defn put-client
  [client item]
  (aws/invoke {:op :put :request {:Item item}}))

Scripts

clj -M:outdated # Check for outdated dependencies
clj -M:test     # Run tests

clj-kondo --lint ./src/

About

Thin cljs wrapper around the node.js aws-sdk


Languages

Language:Clojure 100.0%