
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
react-g-lang
Advanced tools
npm install react-g-lang
import React from 'react';
import { SafeAreaView, Text,TouchableOpacity } from 'react-native';
// required
import { setLanguages, setLanguage, createObject } from 'g-lang'
import LangReloader, { lang } from 'react-g-lang'
// './languages' must be the same path as './node_modules'
// Please download 'https://github.com/lendland/g-lang/raw/master/g-lang-example.zip' and refer to directory/file structure.
setLanguages({
en: require('./languages/en'),
kor: require('./languages/default'),
})
const langObject = createObject(function (){
return {
content: lang.content
}
})
class App extends React.Component {
render(){
return (
<SafeAreaView style={{ flex: 1 }}>
<TouchableOpacity style={{ padding:20 }} onPress={()=>{
setLanguage('en')
}}>
<Text>to EN</Text>
</TouchableOpacity>
<TouchableOpacity style={{ padding:20 }} onPress={()=>{
setLanguage('kor')
}}>
<Text>to KOR</Text>
</TouchableOpacity>
<Text>{lang.title}</Text>
<Text>{langObject.content}</Text>
</SafeAreaView>
)
}
};
// Be sure to wrap your app with LangReloader.
export default LangReloader(App);
FAQs
Multi Language Module / 가장 편리한 다국어 모듈(자동완성 지원)
The npm package react-g-lang receives a total of 13 weekly downloads. As such, react-g-lang popularity was classified as not popular.
We found that react-g-lang 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.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.