![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
Fast and efficient Package for scraping Google search results without the need for an API key
Simple & Fast Package for scraping Google search results without the need for an API key. 🚀
google-sr
does not support web environments, but it has been tested and confirmed to work on the following runtimes:
To get started, you can install google-sr using your preferred package manager:
npm install google-sr
# For pnpm/yarn/bun:
pnpm/yarn/bun add google-sr
# For Deno, either use the npm: specifier
# or import from esm.sh
# https://esm.sh/google-sr
This example demonstrates some of the features of google-sr
. For a bare minimum setup, refer to the examples/basic file.
import {
search,
OrganicResult, // Import the result types you need
DictionaryResult,
ResultTypes, // Import to filter results by type
} from "google-sr";
const queryResult = await search({
query: "nodejs",
// Specify the result types explicitly ([OrganicResult] is the default, but it is recommended to always specify the result type)
resultTypes: [OrganicResult, DictionaryResult],
// Optional: Customize the request using AxiosRequestConfig (e.g., enabling safe search)
requestConfig: {
params: {
safe: "active", // Enable "safe mode"
},
},
});
// will return a SearchResult[]
console.log(queryResult);
console.log(queryResult[0].type === ResultTypes.OrganicResult); // true
Note: By default, only results of type
ResultTypes.OrganicResult
are returned. Use theresultTypes
option to customize the output.
This is not sponsored, supported, or affiliated with Google.
The source code within this repository is intended solely for educational & research purposes. The author (typicalninja) & contributors takes NO responsibility for any issues that arise from its use, such as IP blocking by Google. Your discretion in usage is advised.
Tests are written using vitest and can be run by using the test
script.
Weekly tests are executed using a github action to ensure compatibility and catch breakage due to google changes
pnpm run test
This repository and the code inside it is licensed under the Apache-2.0 License. Read LICENSE for more information.
FAQs
Fast and efficient Package for scraping Google search results without the need for an API key
The npm package google-sr receives a total of 0 weekly downloads. As such, google-sr popularity was classified as not popular.
We found that google-sr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.