
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
react-native-woocommerce-api
Advanced tools
A wrappper that connects react Native to the WooCommerce API
To install the module using NPM:
npm install react-native-woocommerce-api --save
You will need a consumer key and consumer secret to call your store's WooCommerce API. You can find instructions here
Include the 'react-native-woocommerce-api' module within your script and instantiate it with a config:
import WooCommerceAPI from 'react-native-woocommerce-api';
const WooCommerceAPI = new WooCommerceAPI({
url: 'https://yourstore.com', // Your store URL
ssl: true,
consumerKey: 'ck_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // Your consumer secret
consumerSecret: 'cs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // Your consumer secret
wpAPI: true, // Enable the WP REST API integration
version: 'wc/v3', // WooCommerce WP REST API version
queryStringAuth: true
});
Instantiating a WooCommerceAPI instance without a url, consumerKey or secret will result in an error being thrown
Your WooCommerce API can be called once the WooCommerceAPI object has been instantiated (see above).
WooCommerceAPI.get('products')
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
WooCommerceAPI.get('orders', { customer: userID, per_page: 100 })
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
For this example you have a Order object.
WooCommerceAPI.post('products', {
product: {
title: 'Premium Quality',
type: 'simple',
regular_price: '21.99'
}
})
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
WooCommerceAPI.put('orders/123', {
order: {
status: 'completed'
}
})
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
WooCommerceAPI.delete('coupons/123')
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
});
npm test
FAQs
Connects react Native to WooCommerce API
The npm package react-native-woocommerce-api receives a total of 77 weekly downloads. As such, react-native-woocommerce-api popularity was classified as not popular.
We found that react-native-woocommerce-api 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.