New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cloak.i18n

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloak.i18n

The cloak.js i18n module

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
increased by900%
Maintainers
1
Weekly downloads
 
Created
Source

cloak.i18n

Cloak.js is a collection of modules for building modern web applications. Each module is designed to work with the others, but are decoupled to allow you pick and choose which ones you need. Want views but don't need to deal with models or a complex router? You can do that! First, make sure you have cloak.core which contains some basic utilities for each module. Then, install the modules you want.

$ npm install --save cloak.core
$ npm install --save cloak.view

Then, in your JavaScript, just start using the components. Cloak is designed to work in a CommonJS environment, so any tools that do so will work (like common.js or browserify).

var View = require('cloak.view');

var MyView = module.exports = View.extend({
    
    template: 'views/myview/myview.hbs',

    draw: function() {
        this.elem.innerHTML = this.render();
    }

});

Cloak modules

  • cloak.core - The cloak core: tiny, but used by all the cloak modules
  • cloak.view - Provides the View class
  • cloak.model - Provides the Model and Collection classes for handling data
  • cloak.router - Provides the Router class for all you app routing needs
  • cloak.controller - Provides a super-minimal Controller class for transitioning displaying views
  • cloak.xhr - Provides an easy interface for making HTTP requests by XMLHttpRequest; Also provides an interface to define XHR methods on the Model and Controller classes
  • cloak.localstorage - Provides an easy interface for storing data in local storage; Also provides an interface to use local storage as your main app storage for Model and Collection classes
  • cloak.i18n - Provides a simple internationalization interface for storing translated phrases and determining a client's language
  • cloak.socketio - Provides a socket.io interface for models based on the dagger.js websocket api

Usage

$ npm install --save cloak.core cloak.i18n

The cloak.i18n module provides a really basic internationalization interface. It enables you to store translations in simple JS files and then have the correct translation selected.

Your file structure will look something like this:

app
|-- i18n
|   |-- index.js
|   `-- en-us.js
|-- app.js
i18n/en-us.js
module.exports = {
    auth: {
        login: 'Please login',
        bad_password: 'Password was incorrect, please try again'
    }
};
i18n/index.js
exports['en-us'] = require('./en-us');
app.js
// Load the module
var i18n = require('cloak.i18n');

// Include our translations stored in the i18n directory
i18n.init(require('./i18n'));

// Translate some stuff
i18n.translate('auth.login');  // returns "Please login"

Once your translations are setup, the module will determine the best language to use based on browser settings and previous user selections. To change the language manually, you can use i18n.lang(), like so:

// This will use the "en-gb" (english, great britain) lanuage and store that
// preference in local storage for later uses
i18n.lang('en-gb');

Keywords

FAQs

Package last updated on 12 Jan 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc