Skip to content

Commit 7fbdd56

Browse files
committed
first commit
0 parents  commit 7fbdd56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+18612
-0
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,ts}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2
11+
end_of_line = lf

.env-example

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
HOST_NAME=1.1.1.1
2+
USER_NAME=THETAYLXXXXXXXX
3+
PASSWORD=XXXXXXXX

.gitignore

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Sensitive or high-churn files
14+
.idea/**/dataSources/
15+
.idea/**/dataSources.ids
16+
.idea/**/dataSources.local.xml
17+
.idea/**/sqlDataSources.xml
18+
.idea/**/dynamic.xml
19+
.idea/**/uiDesigner.xml
20+
.idea/**/dbnavigator.xml
21+
22+
# Gradle
23+
.idea/**/gradle.xml
24+
.idea/**/libraries
25+
26+
# Gradle and Maven with auto-import
27+
# When using Gradle or Maven with auto-import, you should exclude module files,
28+
# since they will be recreated, and may cause churn. Uncomment if using
29+
# auto-import.
30+
# .idea/modules.xml
31+
# .idea/*.iml
32+
# .idea/modules
33+
34+
# CMake
35+
cmake-build-*/
36+
37+
# Mongo Explorer plugin
38+
.idea/**/mongoSettings.xml
39+
40+
# File-based project format
41+
*.iws
42+
43+
# IntelliJ
44+
out/
45+
46+
# mpeltonen/sbt-idea plugin
47+
.idea_modules/
48+
49+
# JIRA plugin
50+
atlassian-ide-plugin.xml
51+
52+
# Cursive Clojure plugin
53+
.idea/replstate.xml
54+
55+
# Crashlytics plugin (for Android Studio and IntelliJ)
56+
com_crashlytics_export_strings.xml
57+
crashlytics.properties
58+
crashlytics-build.properties
59+
fabric.properties
60+
61+
# Editor-based Rest Client
62+
.idea/httpRequests
63+
### Node template
64+
# Logs
65+
logs
66+
*.log
67+
npm-debug.log*
68+
yarn-debug.log*
69+
yarn-error.log*
70+
71+
# Runtime data
72+
pids
73+
*.pid
74+
*.seed
75+
*.pid.lock
76+
77+
# Directory for instrumented libs generated by jscoverage/JSCover
78+
lib-cov
79+
80+
# Coverage directory used by tools like istanbul
81+
coverage
82+
83+
# nyc test coverage
84+
.nyc_output
85+
86+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
87+
.grunt
88+
89+
# Bower dependency directory (https://bower.io/)
90+
bower_components
91+
92+
# node-waf configuration
93+
.lock-wscript
94+
95+
# Compiled binary addons (https://nodejs.org/api/addons.html)
96+
build/Release
97+
98+
# Dependency directories
99+
node_modules/
100+
jspm_packages/
101+
102+
# TypeScript v1 declaration files
103+
typings/
104+
105+
# Optional npm cache directory
106+
.npm
107+
108+
# Optional eslint cache
109+
.eslintcache
110+
111+
# Optional REPL history
112+
.node_repl_history
113+
114+
# Output of 'npm pack'
115+
*.tgz
116+
117+
# Yarn Integrity file
118+
.yarn-integrity
119+
120+
# dotenv environment variables file
121+
.env
122+
123+
# parcel-bundler cache (https://parceljs.org/)
124+
.cache
125+
126+
# next.js build output
127+
.next
128+
129+
# nuxt.js build output
130+
.nuxt
131+
132+
# vuepress build output
133+
.vuepress/dist
134+
135+
# Serverless directories
136+
.serverless
137+
### VisualStudioCode template
138+
.vscode/*
139+
!.vscode/settings.json
140+
!.vscode/tasks.json
141+
!.vscode/launch.json
142+
!.vscode/extensions.json
143+
144+
dist/

.idea/codeStyles/Project.xml

+87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsLibraryMappings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsLinters/tslint.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/theta-api-client.iml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/watcherTasks.xml

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# theta-client-js
2+
Theta client for javascript.
3+
4+
## Installing
5+
6+
## Example
7+
8+
### HTTP Example
9+
10+
## Theta Client API
11+
12+
### HTTP API

0 commit comments

Comments
 (0)