
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rn-pedometer
Advanced tools
React Native pedometer support for iOS version 8.0 and higher and Android. The module is CMPedometer wrapper. More info about CMPedometer can be found in https://developer.apple.com/library/ios/documentation/CoreMotion/Reference/CMPedometer_class/
npm install --save npm i rn-pedometer
# Or
yarn add rn-pedometer
then make sure it is well linked, for this you can run
yarn react-native link rn-pedometer
# Or
npx react-native link
more information here
// Import the react-native-pedometer module
import Pedometer from 'rn-pedometer';
// determine pedometer availability
Pedometer.isStepCountingAvailable((error, isAvailable) => {
// do something
});
Pedometer.isDistanceAvailable((error, isAvailable) => {
// do something
});
Pedometer.isFloorCountingAvailable((error, isAvailable) => {
// do something
});
Pedometer.isCadenceAvailable((error, isAvailable) => {
// do something
});
// start tracking from current time
const now = new Date();
Pedometer.startPedometerUpdatesFromDate(now.getTime(), pedometerData => {
// do something with pedometer data
});
// query pedometer data from selected date to other selected date
const startDate = new Date();
startDate.setHours(0, 0, 0, 0);
const endDate = new Date();
Pedometer.queryPedometerDataBetweenDates(startDate.getTime(), endDate.getTime(), pedometerData => {
// do something with pedometer data
});
// stop pedometer updates
Pedometer.stopPedometerUpdates();
FAQs
React Native Pedometer.
We found that rn-pedometer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.