@cryptorobot.ai/client 0.0.37 → 0.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -33
- package/readme.md +2 -50
- package/README.md +0 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptorobot.ai/client",
|
|
3
3
|
"description": "A typed client for the cryptorobot.ai platform",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.38",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"cryptocurrency",
|
|
@@ -18,39 +18,7 @@
|
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">= 22.0.0"
|
|
20
20
|
},
|
|
21
|
-
"feathers": {
|
|
22
|
-
"language": "ts",
|
|
23
|
-
"packager": "pnpm",
|
|
24
|
-
"database": "mongodb",
|
|
25
|
-
"framework": "koa",
|
|
26
|
-
"transports": [
|
|
27
|
-
"rest",
|
|
28
|
-
"websockets"
|
|
29
|
-
],
|
|
30
|
-
"schema": "typebox"
|
|
31
|
-
},
|
|
32
|
-
"directories": {
|
|
33
|
-
"lib": "src",
|
|
34
|
-
"test": "test",
|
|
35
|
-
"config": "config"
|
|
36
|
-
},
|
|
37
|
-
"files": [
|
|
38
|
-
"lib/src/client.js",
|
|
39
|
-
"lib/src/services/**/*.d.ts",
|
|
40
|
-
"lib/src/**/*.shared.js",
|
|
41
|
-
"!lib/src/hooks/**",
|
|
42
|
-
"!lib/src/helpers/**",
|
|
43
|
-
"!lib/src/mongodb.d.ts"
|
|
44
|
-
],
|
|
45
21
|
"main": "lib/src/client",
|
|
46
|
-
"config": {
|
|
47
|
-
"commitizen": {
|
|
48
|
-
"path": "node_modules/cz-customizable"
|
|
49
|
-
},
|
|
50
|
-
"cz-customizable": {
|
|
51
|
-
"config": ".cz.config.js"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
22
|
"dependencies": {
|
|
55
23
|
"@feathersjs/authentication": "^5.0.21",
|
|
56
24
|
"@feathersjs/authentication-client": "^5.0.21",
|
package/readme.md
CHANGED
|
@@ -1,52 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
# @cryptorobot.ai/client
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> A client package for the cryptorobot.ai high-frequency cryptocurrency trading platform
|
|
4
4
|
|
|
5
|
-
> A backend application for a high-frequency cryptocurrency trading platform
|
|
6
|
-
|
|
7
|
-
## About
|
|
8
|
-
|
|
9
|
-
This project uses [Feathers](http://feathersjs.com). An open source framework for building APIs and real-time applications.
|
|
10
|
-
|
|
11
|
-
## Getting Started
|
|
12
|
-
|
|
13
|
-
1. Make sure you have [NodeJS](https://nodejs.org/) and [npm](https://www.npmjs.com/) installed.
|
|
14
|
-
2. Install your dependencies
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
cd path/to/backend
|
|
18
|
-
npm install
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
3. Start your app
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
npm run compile # Compile TypeScript source
|
|
25
|
-
npm start
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## Testing
|
|
29
|
-
|
|
30
|
-
Run `npm test` and all your tests in the `test/` directory will be run.
|
|
31
|
-
|
|
32
|
-
## Scaffolding
|
|
33
|
-
|
|
34
|
-
This app comes with a powerful command line interface for Feathers. Here are a few things it can do:
|
|
35
|
-
|
|
36
|
-
```
|
|
37
|
-
$ npx feathers help # Show all commands
|
|
38
|
-
$ npx feathers generate service # Generate a new Service
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
## Help
|
|
42
|
-
|
|
43
|
-
For more information on all the things you can do with Feathers visit [docs.feathersjs.com](http://docs.feathersjs.com).
|
|
44
|
-
|
|
45
|
-
## Update sensitive information
|
|
46
|
-
|
|
47
|
-
aws ssm put-parameter \
|
|
48
|
-
--name "/cryptorobotai/production-secrets" \
|
|
49
|
-
--type "SecureString" \
|
|
50
|
-
--value '{"project":{"zipcode":"11333"}' \
|
|
51
|
-
--overwrite \
|
|
52
|
-
--region us-east-1
|
package/README.md
DELETED