
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.
react-native-schedule-availability
Advanced tools
Component used to schedule times of week
npm install rn-schedule-availability
import * as React from 'react';
import { Button, StyleSheet, View } from 'react-native';
import RnScheduleAvailability from 'rn-schedule-availability';
const daysOfWeek = [
'Segunda-feira',
'Terça-feira',
'Quarta-feira',
'Quinta-feira',
'Sexta-feira',
'Sábado',
'Domingo',
];
export default function App() {
const scheduleRef = React.createRef<any>();
const handleSubmit = React.useCallback(() => {
if (scheduleRef.current) {
const schedules = scheduleRef.current.submit();
console.log(schedules);
}
}, [scheduleRef]);
return (
<View style={styles.container}>
<RnScheduleAvailability
disabled={false}
daysOfWeek={daysOfWeek}
ref={scheduleRef}
/>
<Button onPress={handleSubmit} title="Submit" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
rn-schedule-availability
The npm package react-native-schedule-availability receives a total of 0 weekly downloads. As such, react-native-schedule-availability popularity was classified as not popular.
We found that react-native-schedule-availability 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.