![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
npm install buildapi
buildapi
has two exports.
import buildapi, { Route } from 'buildapi'
This is API builder function.
Define route extending Route class. In Route class, you can use methods below.
const fileId = 'dkfjaklfjdkfldjsflksdf'
const file = evt.file // File event object.
this.put(
// set endpoint on first argument.
`file/update/${fileId}`,
// you can set post data on second argument.
{ key1: 'value1' },
// you can set multipart/form-data values on third argument.
{ data: file }
)
At first, define your routes extending Route
object.
import { Route } from 'buildapi'
const e = encodeURIComponent
export default class File extends Route {
fetchPermissions(id, cursor) {
return this.get(`file/permissions/${e(id)}`, { cursor })
}
download(fileId) {
return this.download(`file/data/${e(fileId)}`)
}
setAttribute(fileId, key, value) {
return this.put(`file/attr/${e(fileId)}/${e(key)}/${e(value)}`)
}
delete(fileId) {
return this.delete(`file/${e(fileId)}`)
}
fetchData(fileId) {
return this.get(`file/data/${e(fileId)}`)
}
fetch(fileId) {
return this.get(`file/${e(fileId)}`)
}
fetchChunk(fileId, chunkId, from, length) {
return this.get(`file/data/${e(fileId)}/${e(chunkId)}/${e(from)}/${e(length)}`)
}
uploadChunk(fileId, chunkIndex, offset, length, file) {
return this.put(`file/data/${e(fileId)}/${e(chunkIndex)}/${e(offset)}/${e(length)}`, {}, { data: file })
}
}
And build your api with buildapi
.
import buildapi from 'buildapi'
const routes = { File }
module.exports = buildapi({ routes, api: 'https://api.fata.io/v0/' })
And use api.
import API from './api.js'
const api = new API({
// you can override api point.
api: 'staging.server.api'
})
// access to endpoint.
api.file.fetchData('testsetsetset') // return Promise object
.then(res => {
//...
})
.catch(err => {
console.error(err.status)
})
buildapi
supports Oauth token.
const api = new API() // instanciate your api.
api.setToken('fsjdkfjdlkfjdsfklsdjflksdf')
This set request header Authorization section internally.
req.set('Authorization', 'Bearer ' + tokenString)
Yusuke Shibata
MIT
FAQs
Create api access module easily.
The npm package buildapi receives a total of 2 weekly downloads. As such, buildapi popularity was classified as not popular.
We found that buildapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.