Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-clean-webview
Advanced tools
React Native component for rendering a clean WebView (using Readability algorithm)
React Native component for rendering a clean WebView (using Readability algorithm)
React Native component that will render a clean version of a web page using the readability algorithm. The component can override the default CSS styling.
The Readability algorithm is from https://github.com/mozilla/readability
npm install react-native-clean-webview --save
import CleanWebView from 'react-native-clean-webview';
render() {
let css = `
img, figure {
display: none;
}
h1 {
font-size: 1.5em;
font-weight: bold;
margin-bottom: 5px;
letter-spacing: .05em
}
p {
letter-spacing: .03em;
}
`;
return (
<View>
<CleanWebView
url='http://www.bbc.com/news/science-environment-42690577'
htmlCss={ css }
onCleaned={(readabilityArticle, cleanedHtml) => {
console.log(readabilityArticle); // access to the readability article object
console.log(cleanedHtml); // access to the cleaned HTML
}}
onError={(error) => {
console.log(error);
}}
/>
</View>
)
<CleanWebView />
Component for rendering clean web view.
url
- the url to cleanhtmlCss
- custom css that is used with the clean html (view the returned cleanHtml
property from the onCleaned
callback to see what styles you can customize. These styles are consistent for all URLs)onCleaned
- a callback function that returns a readabilityArticle
and the cleanHtml
onError
- a callback function that returns an error
object when a problem occurs while cleaning the web pageThis readabilityArticle
object will contain the following properties:
uri
: original uri
object that was passed to constructortitle
: article titlecontent
: HTML string of processed article contentlength
: length of article, in charactersexcerpt
: article description, or short excerpt from contentbyline
: author metadatadir
: content directionThe cleanHTML
is a string containing the clean HTML.
Clone this project from GitHub
npm install
npm test
If you find any bugs or have a feature request, please create an issue in GitHub.
git checkout -b feature/fooBar
)git commit -am 'Add some fooBar'
)git push origin feature/fooBar
)Distributed under the MIT license. See LICENSE
for more information.
FAQs
React Native component for rendering a clean WebView (using Readability algorithm)
The npm package react-native-clean-webview receives a total of 0 weekly downloads. As such, react-native-clean-webview popularity was classified as not popular.
We found that react-native-clean-webview 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.