Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Sijil is a simple but powerful i18n library. It can be used in conjunction with angular2, or as an old fashioned <script> inclusion.
Sijil is (very) basically a javascript object with one entry by language loaded, which contains all the translations available as key/values.
Like this :
{
"en": { "hello": "Hi", "bye": "Bye" },
"fr": { "hello": "Salut !", "bye": "Au revoir" }
}
But the interesting part is that we can use parameters and combine them with the final output.
Here is {{ name ? name : Nobody }} and {{ male ? his : her }} {{ 1 < bunnyCount ? $bunnyCount bunnies : bunny }}.
The library is also completely customizable, from the Loader to the Parser.
( Demo )
npm install opendigitaleducation/sijil.js --save-dev
bower cli
bower install opendigitaleducation/sijil.js
bower.json
"dependencies": {
"sijil": "opendigitaleducation/sijil.js#master"
}
Then : bower install
npm install
npm start
Distribution files will be located inside the dist
folder.
Use the es6 files (index.js
as the entry point) and d.ts definitions, or the umd.bundle (dist/bundles/sijil.module.umd.js
).
For example, with SystemJs loader, inside the systemjs.config.js
file :
System.config({
// ... //
map: {
// ... //
'sijil': 'npm:sijil/dist/bundles/sijil.module.umd.js'
// ... //
}
// ... //
})
import { SijilModule } from 'sijil'
@NgModule({
imports: [
/* ... */
SijilModule.forRoot(), // In the root module
// OR
SijilModule.forChild() // For lazily loaded modules
/* ... */
]
})
import { BundlesService } from 'sijil'
/* ... */
constructor(/*...*/, private bundlesService: BundlesService, /*...*/){}
this.bundlesService.loadBundle('/path/to/the/language/file.json', 'en')
.then(/* The bundle is loaded. */)
.catch(...)
The default loader will perform an http request at the specified path to retrieve a json file. The contents will be added to the current language bundle (or the specified language as the 2nd argument).
<!-- USING THE S5L HTML TAG -->
<s5l>hello</s5l>
<!-- Force a language -->
<s5l s5l-lang='en'>hello</s5l>
<!-- With parameters -->
<s5l [s5l-params]="{ itemNumber: 3 }">count.key</s5l>
<!-- count.key being mapped to something like "There {{ itemNumber > 1 ? are $itemNumber items : is one item }} in the room" -->
<!-- USING THE TRANSLATE PIPE -->
{{ 'hello' | translate }}
<!-- As an attribute -->
<input attr.placeholder="{{ 'enter.your.name' | translate }}" />
<!-- Force a language -->
{{ 'hello' | translate:{}:'fr' }}
<!-- With parameters -->
{{ 'count.key' | translate:{itemNumber: 3} }}
static forRoot(require?: Type<RequireService>, parser?: Type<Parser>, options?: SijilOpts): ModuleWithProviders
The forRoot method can be used to override the default services :
class DummyRequire implements RequireService {
load(){ return new Promise(res => { res({ 'key': 'value'}) }) }
}
class DummyParser implements Parser {
compile(text){ return text }
}
let dummyOpts = { defaultLanguage: 'en' }
@NgModule({
imports: [
/* ... */
SijilModule.forRoot(DummyRequire, DummyParser, dummyOpts)
/* ... */
]
})
Include via a <script src="[your.sijil.path]/dist/bundles/sijil.js></script>
tag.
Then use the global Sijil
object as needed.
<script src="../dist/bundles/sijil.js"></script>
// Loads /docs/language.json file.
Sijil.loadBundle('/docs/' + Sijil.defaultLanguage + '.json').then(function(){
// Adds the 'test' key to the bundle.
Sijil.addToBundle({ 'test': '[OK] Sijil is now loaded.' })
// Logs it.
console.log(Sijil.translate('test'))
})
The factory method can be used to override the default services :
// Internal definition of the factory function :
Sijil['factory'] = (require: RequireService, parser: Parser, opts: SijilOpts) => {
return new BundlesService(require || new XHRRequire(), parser || new FragmentsParser(), opts || defaultSijilOpts)
}
// Usage in your code :
let sijilInstance = Sijil.factory({
// Dummy loader
load: () => { return new Promise(res => { res({ 'key': 'value'}) }) },
}, {
// Dummy parser
compile: (text) => text
}, {
// Dummy options
defaultLanguage: 'en'
})
sijilInstance.loadBundle().then(() => { console.log(sijilInstance.translate('key')) })
// <-- Outputs 'value'
or loadBundles for multiple bundles
Loads a bundle and associates it with a language. If the target language already contains key/values, then we mixin the new bundle and the existing one.
loadBundle(where, lang?: string) : Promise<void>
the method called by the translate pipe and the s5l tag
Translates a single key into a target language, using the parameters provided if needed.
translate(key: string, parameters?: Object | any[], lang?: string) : string
Removes a bundle from the bundles list.
unloadBundle(lang: string) : void
Returns a list of all loaded languages.
getLoadedLanguages() : string[]
A RequireService is used to fetch bundles. It contains a single load: (from: any) => Promise<Object>
method,
which loads the bundle according to its argument value.
The default RequireService provided (HttpRequireService for angular2 users, XhrRequireService otherwise) fetches the bundles from an url and parses json from the reponse.
A ParserService computes any logic provided in the translations.
The default provider instanciates a FragmentsParserService, which accepts the syntax described below.
Logic is contained inside mustache blocks : {{ logic block }}
There are two variants :
A key when the parameters are contained inside an object or an index when the parameters are contained inside an array
Examples:
{{ key }}
+ { "key" : "my key" }
= my key
{{ 1 }}
+ [1, 2]
= 2
{{ condition ? trueValue : falseValue }}
{{ leftClause operator rightClause ? trueValue : falseValue }}
Where condition may be either a single parameter key/index, or 2 clauses with the following operators : ==, >, =>, <=, <
Examples:
the $ sign is used in ambiguous cases to refer to the parameter
{{ count > 1 ? $count cats : 1 cat }}
+ {"count": 10}
= 10 cats
{{ 1 < count ? $count cats : 1 cat }}
+ {"count": 1}
= 1 cat
The syntax is the same, but with indexes instead of names :
{{ $0 > 1 ? $0 cats : 1 cat }}
+ [10]
= 10 cats
{{ 1 < $0 ? $0 cats : 1 cat named $1 }}
+ [1, 'Albert']
= 1 cat named Albert
[2.0.0] - 2019-10-21
FAQs
[SI]mple [J]son [I]nternationalization [L]ibrary
The npm package sijil receives a total of 0 weekly downloads. As such, sijil popularity was classified as not popular.
We found that sijil 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.