
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
react-native-jescon
Advanced tools
"React Native Package for Custom Components & Functions"
This project requires NodeJS (version 8 or later) and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.
$ npm -v && node -v
6.4.1
v8.16.0
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
BEFORE YOU INSTALL: please read the prerequisites
To install and set up the library, run:
npm i react-native-jescon
Or if you prefer using Yarn:
yarn add react-native-jescon
react-native run-android
npm test
./gradlew assembleRelease
This task will create a apk distribution version of the project inside your local android/app/build/outputs/release folder
react-native run-ios
import { CContainerView, CDetailView, normalize, Icon, CSliderMenu } from 'react-native-jescon'
Supported options and result fields for the Components are listed below.
props
| Type | Default value |
|---|---|
| string | '' |
If present, the request will be performed as soon as the component is mounted
Example:
import React,{useState} from 'react';
import { Text, View } from 'react-native';
import { CContainerView, CDetailView, normalize, Icon, CSliderMenu,NetworkServiceCall } from 'react-native-jescon'
const Test = () => {
const [isShowSlidermenu, setIsShowSlidermenu] = useState(false);
var optionData = [
{ optionname: 'Home',key:1,iconname:"home",navigation:"Dashboard" },
{ optionname: 'Location',key:2,iconname:"search-location" ,navigation:"Home"},
{ optionname: 'Video Call',key:3 ,iconname:"video",navigation:"Login"},
{ optionname: 'Precription Report',key:4,iconname:"key",navigation:"Dashboard" },
];
return (
<CContainerView>
<Icon.FontAwesome5 name={'home'} color="red" size={normalize(30)} onPress={()=>setIsShowSlidermenu(true)}/>
<Text style={{ color: 'white', fontSize: normalize(30) }}>11111</Text>
<CDetailView>
<Text>HHHH</Text>
</CDetailView>
{isShowSlidermenu ?
<CSliderMenu
navigation={props.navigation}
optionArray={optionData}
isShow={isShowSlidermenu}
visibility={(val) => (val == undefined ? null : setIsShowSlidermenu(val))}
/> : null}
</CContainerView>
)
}
export default Test;
delay
| Type | Default value | Description |
|---|---|---|
| number | 0 | Time in milliseconds |
If present, the request will be delayed by the given amount of time
Example:
type Joke = {
value: {
id: number;
joke: string;
};
};
const MyComponent: React.FC = () => {
const { data, error, loading } = useBasicFetch<Joke>('https://api.icndb.com/jokes/random', 2000);
if (error) {
return <p>Error</p>;
}
if (loading) {
return <p>Loading...</p>;
}
return (
<div className="App">
<h2>Chuck Norris Joke of the day</h2>
{data && data.value && <p>{data.value.joke}</p>}
</div>
);
};
fetchData(url: string)
Perform an asynchronous http request against a given url
type Joke = {
value: {
id: number;
joke: string;
};
};
const ChuckNorrisJokes: React.FC = () => {
const { data, fetchData, error, loading } = useBasicFetch<Joke>();
const [jokeId, setJokeId] = useState(1);
useEffect(() => {
fetchData(`https://api.icndb.com/jokes/${jokeId}`);
}, [jokeId, fetchData]);
const handleNext = () => setJokeId(jokeId + 1);
if (error) {
return <p>Error</p>;
}
const jokeData = data && data.value;
return (
<div className="Comments">
{loading && <p>Loading...</p>}
{!loading && jokeData && (
<div>
<p>Joke ID: {jokeData.id}</p>
<p>{jokeData.joke}</p>
</div>
)}
{!loading && jokeData && !jokeData.joke && <p>{jokeData}</p>}
<button disabled={loading} onClick={handleNext}>
Next Joke
</button>
</div>
);
};
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
git checkout -b my-new-featuregit add .git commit -am 'Add some feature'git push origin my-new-featureTODO: Write credits
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
MIT License © Andrea SonnY
FAQs
Jescon Technologies Pvt Ltd
We found that react-native-jescon 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.