
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.
reactaccelerometervalue
Advanced tools
The most easiest way to obtain the accelerometer and orientation values of your device in React JS.
The most easiest way to obtain the accelerometer and orientation values of your device in React JS.
View Demo
·
Report Bug
·
Request Feature
This is an improvised version of React Accelerometer and almost similar to React Native Expo Sensor . It will run efficiently in the latest versions of React. I have also made notable changes in the way the accelerometer value is calculated according to the latest Sensor API Documentation.
npm install --save reactaccelerometervalue
// or
yarn add reactaccelerometervalue
The React-Accelerometer-Value is a parent component with the value of orientation and accelerometer values are passed as children values. Therefore, to obtain the values the best way is to wrap your component that you need the value to display in as a Child component inside the ReactAccelerometerValue.
import React from "react";
import ReactAccelorometerValue from 'reactaccelerometervalue'
import List from './List'
class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div >
<ReactAccelorometerValue>
<List></List>
</ReactAccelorometerValue>
</div>
);
}
}
export default App
import React,{Component} from 'react';
class List extends Component {
constructor(props) {
super(props)
}
render(){
console.log(this.props)
return(
<div>
<ul>
<li>Is it landscape:{this.props.state.landscape.toString()} </li>
<li>x:{this.props.state.x}</li>
<li>y:{this.props.state.y}</li>
<li>z:{this.props.state.z}</li>
<li>rotation alpha:{this.props.state.rotation.alpha}</li>
<li>rotation beta:{this.props.state.rotation.beta}</li>
<li>rotation gamma:{this.props.state.rotation.gamma}</li>
</ul>
</div>
)
}
}
export default List;
npm test
// or
yarnpkg test
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)Distributed under the MIT License. See LICENSE.txt for more information.
Author - @raomahesh98 - raomahesh610@gmail.com
Project Link: https://github.com/maheshrao98/React-Accelerometer-Value
FAQs
The most easiest way to obtain the accelerometer and orientation values of your device in React JS.
We found that reactaccelerometervalue 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.