An alternative for wp api made with TS. This is not a fork from [WP api](https://github.com/wp-api/node-wpapi) for Node. This is a new implemetation using Typescript, but inspired on it. Project currently on develop, please don't use in production.
npm install wp-api-client-enhancesh
npm install wp-api-client-enhance
`
Using it creating a new instance for the client
`js
import WPApi from 'wp-api-client-enhance';
const wpApi = new WPApi(baseUrl, suffix);
`
Examples
Consume the API
`js
const pages = await wpApi.pages.fetch().request();
const page = await wpApi.pages.find(1).request(); // to find a record
await wpApi.pages.find(1).update(newDataUpdated).request(); // to update a record
await wpApi.pages.find(1).delete(); // to delete a record
`
Always finish your instruction calling the request method.
Make a login
`js
const loggedUsers = await wpApi.users.login({ username, password}, urlToMakeAuthRequest);
``