Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leverage built-in fetch API (remove axios) #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"parser": "babel-eslint",
"extends": "airbnb/base",
"env": {
"mocha": true
"mocha": true,
"browser": true
}
}
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 18
- 14
- 12
- 10
name: Node ${{ matrix.node-version }} sample
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
"url": "https://github.com/detectlanguage/detectlanguage-node/issues"
},
"homepage": "https://github.com/detectlanguage/detectlanguage-node",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
Expand Down
33 changes: 23 additions & 10 deletions src/client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import axios from 'axios';
import * as defaults from './defaults';
import { handleError } from './error';

Expand All @@ -11,28 +10,42 @@ export default class Client {
Authorization: `Bearer ${apiKey}`,
};

this.connection = axios.create({
headers,
baseURL: `${config.protocol}://${config.host}/${config.apiVersion}/`,
timeout: config.timeout * 1000,
});
this.baseURL = `${config.protocol}://${config.host}/${config.apiVersion}/`;
this.timeout = config.timeout * 1000;
this.headers = headers;
}

async get(path) {
try {
const response = await this.connection.get(path);
const response = await fetch(this.baseURL + path, {
headers: this.headers,
timeout: this.timeout,
});

return response.data;
if (!response.ok) {
throw new Error(await response.text());
}

return await response.json();
} catch (e) {
return handleError(e);
}
}

async post(path, data) {
try {
const response = await this.connection.post(path, data);
const response = await fetch(this.baseURL + path, {
method: 'POST',
headers: Object.assign(this.headers, { 'Content-Type': 'application/json' }),
body: JSON.stringify(data),
timeout: this.timeout,
});

if (!response.ok) {
throw new Error(await response.text());
}

return response.data;
return await response.json();
} catch (e) {
return handleError(e);
}
Expand Down
Loading