Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
H5 Dooring | 7,298 | a month ago | 29 | gpl-3.0 | JavaScript | |||||
H5 Page Maker, H5 Editor, LowCode. Make H5 as easy as building blocks. | 让H5制作像搭积木一样简单, 轻松搭建H5页面, H5网站, PC端网站,LowCode平台. | ||||||||||
Sentry Javascript | 6,966 | 1,078 | 974 | 4 hours ago | 302 | September 15, 2022 | 205 | mit | TypeScript | |
Official Sentry SDKs for JavaScript | ||||||||||
Nteract | 5,987 | 24 | 26 | a day ago | 84 | July 08, 2022 | 185 | bsd-3-clause | TypeScript | |
📘 The interactive computing suite for you! ✨ | ||||||||||
Plasmo | 5,608 | 3 | 4 days ago | 199 | September 25, 2022 | 45 | mit | TypeScript | ||
🧩 The Browser Extension Framework | ||||||||||
Hop | 2,367 | 3 days ago | 10 | mit | TypeScript | |||||
🐰 Hop Protocol v1 monorepo | ||||||||||
Botframework Emulator | 1,661 | 5 days ago | 3 | February 15, 2019 | 127 | mit | TypeScript | |||
A desktop application that allows users to locally test and debug chat bots built with the Bot Framework SDK. | ||||||||||
Formio.js | 1,569 | 104 | 95 | 2 days ago | 1,058 | July 15, 2022 | 736 | mit | JavaScript | |
JavaScript powered Forms with JSON Form Builder | ||||||||||
Sentry React Native | 1,396 | 11 | 21 | 5 days ago | 120 | July 14, 2022 | 78 | mit | TypeScript | |
Official Sentry SDK for React-Native | ||||||||||
Parsereact | 1,309 | 203 | 4 | 3 years ago | 20 | April 27, 2016 | 72 | other | JavaScript | |
Seamlessly bring Parse data into your React applications. | ||||||||||
React Native Facebook Login | 1,219 | 210 | 3 years ago | 40 | November 05, 2019 | 119 | mit | Objective-C | ||
React Native component wrapping the native Facebook SDK login button and manager |
React Native BaiduMap SDK for Android + iOS.
import { MapView } from 'react-native-baidumap-sdk'
render() {
return <MapView center={{ latitude: 39.2, longitude: 112.4 }} />
}
<MapView satellite />
import { MapView } from 'react-native-baidumap-sdk'
render() {
return (
<MapView
onLoad={() => console.log('onLoad')}
onClick={point => console.log(point)}
onStatusChange={status => console.log(status)}
/>
)
}
import { MapView, Location } from 'react-native-baidumap-sdk'
await Location.init()
Location.addLocationListener(location => this.setState({ location }))
Location.start()
state = { location: null }
render() {
return <MapView location={this.state.location} locationEnabled />
}
<MapView>
<MapView.Marker
color="#2ecc71"
title="This is a marker"
onPress={this.onPress}
/>
</MapView>
<MapView>
<MapView.Marker
title="This is a image marker"
image="flag"
coordinate={{ latitude: 39, longitude: 113 }}
/>
</MapView>
<MapView>
<MapView.Marker
icon={() => (
<View>
<Image source={image} />
<Text>This is a custom marker</Text>
</View>
)}
/>
</MapView>
onStatusChange = status => this.cluster.update(status)
renderMarker = item => (
<MapView.Marker
key={item.extra.key}
coordinate={item.coordinate}
/>
)
render() {
return (
<MapView onStatusChange={this.onStatusChange}>
<MapView.Cluster
ref={ref => this.cluster = ref}
markers={this.markers}
renderMarker={this.renderMarker}
/>
</MapView>
)
}
points = [
{
latitude: 39,
longitude: 113,
intensity: 16,
},
...
]
<MapView>
<MapView.HeatMap
points={this.points}
radius={20}
opacity={0.5}
/>
</MapView>
import { Geocode } from 'react-native-baidumap-sdk'
const searchResult = await Geocode.search('')
const reverseResult = await Geocode.reverse({ latitude: 39, longitude: 113 })