Javascript HTTP client for the browser.
See the changelog here
Install via your favorite package manager or get the latest version in dist folder
pnpm install kn-http
npm install kn-http
Usage example
console.log('saveBtn()');saveBtn.btnLoading(true);KnHttp.postForm("/account/settings",{currentPassword: currentPassword,newPassword: newPassword,newPasswordConfirm: newPasswordConfirm},{csrf: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"}).onSuccess(res=>{console.log('saveBtn() onSuccess()',res);if(res.data.success){currentPassword=newPassword=newPasswordConfirm='';notifySuccess("Password updated successfully");}else{notifyError(res.data.error ? res.data.error : "Unknown error");}}).onError(err=>{console.error('saveBtn() onError()',err);if(err.code==KnHttp.CANCELED_ERROR){return;}elseif(err.code==KnHttp.HTTP_ERROR){notifyError("Unknown error: HTTP CODE "+err.httpCode);}else{if(err.code==KnHttp.NETWORK_ERROR){notifyError("Please check your internet connection");}else{notifyError("Unknown error");}}}).onEnd((wasSuccess)=>{console.log('saveBtn() onEnd()',wasSuccess);saveBtn.btnLoading(false);});
Methods
// HTTP GET request with optional options// responseType jsonletreq=KnHttp.get('https://mysuperurl',opt);// HTTP GET request with optional options// responseType textletreq=KnHttp.getText('https://mysuperurl',opt);// HTTP GET download request with optional options// forced download to browser and responseType blobletreq=KnHttp.download('https://mysuperurl',opt);// HTTP DELETE request with optional options// responseType jsonletreq=KnHttp.del('https://mysuperurl',opt);// HTTP POST "raw" request with optional options// raw body and responseType jsonletreq=KnHttp.postRaw('https://mysuperurl',data,opt);// HTTP POST "form encoded" with optional options// form encoded with "application/x-www-form-urlencoded" header// responseType jsonletreq=KnHttp.postForm('https://mysuperurl',data,opt);// HTTP POST "form data" with optional options// form data and responseType jsonletreq=KnHttp.postFormData('https://mysuperurl',data,opt);// HTTP POST "json" with optional options// json body and responseType jsonletreq=KnHttp.postJson('https://mysuperurl',data,opt);// HTTP PUT "raw" request with optional options// raw body and responseType jsonletreq=KnHttp.putRaw('https://mysuperurl',data,opt);// HTTP PUT "form encoded" with optional options// form encoded with "application/x-www-form-urlencoded" header// responseType jsonletreq=KnHttp.putForm('https://mysuperurl',data,opt);// HTTP PUT "form data" with optional options// form data and responseType jsonletreq=KnHttp.putFormData('https://mysuperurl',data,opt);// HTTP PUT "json" with optional options// json body and responseType jsonletreq=KnHttp.putJson('https://mysuperurl',data,opt);// Custom HTTP req with optionsletreq=KnHttp.request('https://mysuperurl',method,opt);// On progress pourcent callback for upload only// return selfreq.onProgress(progress=>{// progress (number)});// On req sucess callback// return selfreq.onSuccess(res=>{// res.data (any)// res.headers (object)// res.httpCode (number)});// On req error callback// return selfreq.onError(err=>{// err.code (number) => See the err codes bellow// err.httpCode (number)// err.data (any)// err.headers (object)});// On req ended callback (whatever the final result)// return selfreq.onEnd(wasSuccess=>{// wasSuccess (bool)});// Abort / cancel the requestreq.abort();
Error codes
// Request has been cancelled (using the abort method)KnHttp.CANCELED_ERROR;// Network error (Server can't be reached, no internet ?)KnHttp.NETWORK_ERROR;// Http error (validateStatus callback has failed)KnHttp.HTTP_ERROR;// Unknown error (can be a bad JSON for exemple)KnHttp.UNKNOWN_ERROR;
Properties
// Get the XMLHttpRequest of the request objectreq._xhr;// Return the default options object (you can update the properties)KnHttp.DEFAULTS;// Return the lib versionKnHttp.VERSION;
Options
letreq=KnHttp.request('https://mysuperurl','POST',{// Request timeout in ms timeout =270_000,// Request type (raw, json, form, formData) requestType ='raw',// Response type (text, json, blob) responseType ='json',// Headers object headers ={'x-custom-header': 'test'},// Forced download result of the request to the browser download =false,// Upload request with progress upload =false,// XMLHttpRequest.withCredentials withCredentials =false,// HTTP basic auth basicAuth ={username: 'username',password: 'password'},// Bearer token bearerAuthToken ='838da7ac74d22a0d5b25048632f6eb4ae4ec3c6c007613ecd83336f348f75aa7',// CSRF Header name csrfHeader ='X-CSRF',// CSRF Token csrf ='838da7ac74d22a0d5b25048632f6eb4ae4ec3c6c007613ecd83336f348f75aa7',// Raw body content body ='rawbodycontent';});
See the license here
The MIT License (MIT)
Copyright (c) 2022-2025 Florent VIALATTE
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.