Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@happy-gastro/gplaces-finder
Advanced tools
@happy-gastro/gplaces-finder is a Node.js library that simplifies the process of fetching information about restaurants and bars using the Google Places API
@happy-gastro/gplaces-finder is a Node.js library that simplifies the process of fetching information about restaurants and bars using the Google Places API. It provides methods to retrieve a list of restaurants and bars near a specified location, as well as additional details for each place.
npm install @happy-gastro/gplaces-finder
const GooglePlacesClient = require('@happy-gastro/gplaces-finder');
// Create a new instance of GooglePlacesClient with your API key
const apiKey = 'YOUR_API_KEY';
const placesClient = new GooglePlacesClient(apiKey);
// Define location and radius for the search
const location = '47.4844144,19.0816307'; // Budapest coordinates
const radius = 150000;
// Fetch details for restaurants and bars near the specified location
placesClient.fetchRestaurantsAndBars(location, radius)
.then(places => { places.forEach(place => { console.log('Name:', place.name); console.log('Address:', place.formatted_address); console.log('Phone:', place.formatted_phone_number || 'N/A'); console.log('Website:', place.website || 'N/A'); console.log('----------------------'); }); }) .catch(error => { console.error('Error:', error); });
Creates a new instance of GooglePlacesClient with the specified Google Maps API key.
apiKey
(string): Your Google Maps API key.Fetches details for restaurants and bars near a specified location.
location
(string): The latitude and longitude coordinates (comma-separated) of the location.radius
(number): The radius (in meters) around the location to search for places.Fetches a list of places (restaurants and bars) near a specified location.
location
(string): The latitude and longitude coordinates (comma-separated) of the location.radius
(number): The radius (in meters) around the location to search for places.types
(string): The types of places to search for (e.g., 'restaurant|bar').Fetches details for a specific place based on its place ID.
placeId
(string): The unique place ID.Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
This project is developed and maintained by Farkas Ferenc.
Happy Gastro Ltd.
FAQs
@happy-gastro/gplaces-finder is a Node.js library that simplifies the process of fetching information about restaurants and bars using the Google Places API
We found that @happy-gastro/gplaces-finder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.