
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
@r2don/react-naver-map
Advanced tools
네이버 맵을 리액트에서 사용하기 편하게 만들어 둔 라이브러리입니다.
# with npm
npm i @r2don/react-naver-map
# with yarn
yarn add @r2don/react-naver-map
# with pnpm
pnpm add @r2don/react-naver-map
기본 스타일이 적용되어있지 않으니, 필요에 맞게 width와 height를 적용해주세요.
import { Map, useNaverMapInit, Marker } from '@r2don/react-naver-map'
const MARKERS = [
{latitude: 37., longitude: 127},
{latitude: 37.5, longitude: 127.5},
{latitude: 38, longitude: 128},
{latitude: 38.5, longitude: 128.5},
]
function App () {
const {isLoaded} = useNaverMapInit();
if(!isLoaded) return null;
return (
<Map center={{latitude: 37.3595704, longitude: 127.105399}} style={{height: '500px', width: '500px'}}>
{MARKERS.map((marker) => <Marker key={JSON.stringify(marker)} position={marker} />)}
</Map>
);
}
Licensed under the MIT License, Copyright (c) 2022 r2don.
See LICENSE for more information.
FAQs
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
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.