Skip to content

Commit 3cc7c68

Browse files
committed
Release v3.0.0 JavaScript SDK
1 parent 8ffb79a commit 3cc7c68

File tree

224 files changed

+7319
-20227
lines changed

Some content is hidden

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

224 files changed

+7319
-20227
lines changed

.babelrc

Lines changed: 0 additions & 33 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 132 deletions
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,7 @@
1-
# files
2-
package-lock.json
3-
Test.*
4-
index.js
5-
6-
# Logs
7-
logs
8-
*.log
9-
npm-debug.log*
10-
yarn-debug.log*
11-
yarn-error.log*
12-
lerna-debug.log*
13-
.pnpm-debug.log*
14-
15-
# Diagnostic reports (https://nodejs.org/api/report.html)
16-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17-
18-
# Runtime data
19-
pids
20-
*.pid
21-
*.seed
22-
*.pid.lock
23-
24-
# Directory for instrumented libs generated by jscoverage/JSCover
25-
lib-cov
26-
27-
# Coverage directory used by tools like istanbul
28-
coverage
29-
*.lcov
30-
31-
# nyc test coverage
32-
.nyc_output
33-
34-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35-
.grunt
36-
37-
# Bower dependency directory (https://bower.io/)
38-
bower_components
39-
40-
# node-waf configuration
41-
.lock-wscript
42-
43-
# Compiled binary addons (https://nodejs.org/api/addons.html)
44-
build/Release
45-
46-
# Dependency directories
471
node_modules/
48-
jspm_packages/
49-
50-
# Snowpack dependency directory (https://snowpack.dev/)
51-
web_modules/
52-
53-
# TypeScript cache
54-
*.tsbuildinfo
55-
56-
# Optional npm cache directory
57-
.npm
58-
59-
# Optional eslint cache
60-
.eslintcache
61-
62-
# Optional stylelint cache
63-
.stylelintcache
64-
65-
# Microbundle cache
66-
.rpt2_cache/
67-
.rts2_cache_cjs/
68-
.rts2_cache_es/
69-
.rts2_cache_umd/
70-
71-
# Optional REPL history
72-
.node_repl_history
73-
74-
# Output of 'npm pack'
2+
dist/
3+
coverage/
754
*.tgz
76-
77-
# Yarn Integrity file
78-
.yarn-integrity
79-
80-
# dotenv environment variable files
815
.env
82-
.env.development.local
83-
.env.test.local
84-
.env.production.local
856
.env.local
86-
87-
# parcel-bundler cache (https://parceljs.org/)
88-
.cache
89-
.parcel-cache
90-
91-
# Next.js build output
92-
.next
93-
out
94-
95-
# Nuxt.js build / generate output
96-
.nuxt
97-
dist
98-
99-
# Gatsby files
100-
.cache/
101-
# Comment in the public line in if your project uses Gatsby and not Next.js
102-
# https://nextjs.org/blog/next-9-1#public-directory-support
103-
# public
104-
105-
# vuepress build output
106-
.vuepress/dist
107-
108-
# vuepress v2.x temp and cache directory
109-
.temp
110-
111-
# Docusaurus cache and generated files
112-
.docusaurus
113-
114-
# Serverless directories
115-
.serverless/
116-
117-
# FuseBox cache
118-
.fusebox/
119-
120-
# DynamoDB Local files
121-
.dynamodb/
122-
123-
# TernJS port file
124-
.tern-port
125-
126-
# Stores VSCode versions used for testing VSCode extensions
127-
.vscode-test
128-
129-
# yarn v2
130-
.yarn/cache
131-
.yarn/unplugged
132-
.yarn/build-state.yml
133-
.yarn/install-state.gz
134-
.pnp.*
135-
136-
.idea/
7+
.DS_Store

.travis.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## 3.0.0
4+
5+
- Initial JavaScript SDK release for `/v3/ipgeo` and `/v3/ipgeo-bulk`
6+
- Bulk results use `result.data` for success items and `result.error.message` for error items
7+
- Async `IpGeolocationClient` with typed JSON methods and raw JSON/XML methods
8+
- Strict config and request validation
9+
- Typed response models, response metadata, and JSON output helpers
10+
- Live smoke coverage for free-plan and paid-plan behavior
11+
- Live raw-vs-typed parity coverage against the paid API

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 IPGeolocation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)