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

steal

Package Overview
Dependencies
Maintainers
1
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

steal

Gets JavaScript.

  • 0.2.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

StealJS

Build Status

StealJS is an ES6, AMD, CommonJS, and steal client-side loader. Combined with steal-tools, its designed to simplify dependency management while being extremely powerful and flexible.

Steal builds from SystemJS and ES6ModuleLoader and adds:

  • global configuration
  • css and less support
  • plugin extension mapping (upcoming)
  • production builds with steal-tools

But it's killer feature - progressively loaded apps that balance caching and the number of script requests.

StealJS supports IE8+ with AMD, CommonJS, and Steal syntax and IE9+ for ES6 syntax.

Use

Hello World Example

Lets see how to get a basic app up and running.

  1. Install StealJS:

With Bower

bower install steal#0.1.1 -S

  1. Create stealconfig.js:

Add a stealconfig.js file directly within your "root" folder. Your "root" folder should contain all your static scripts and resources.

By default, steal will assume stealconfig.js is a sibling of bower_components:

  ROOT/
    bower.json
    bower_components
    stealconfig.js

stealconfig.js will be loaded by every page in your project. It is used to configure the location to modules and other behavior.

  1. Add main module:

Add a main.js to your project. This will load your apps other modules.

  ROOT/
    bower.json
    bower_components
    stealconfig.js
    main.js
  

Within main.js add:

console.log("hello world");
  1. Create an HTML page:

Create an index.html page that specifies the location of stealconfig.js and the main module name:

  ROOT/
    bower.json
    bower_components
    stealconfig.js
    index.html

Within index.html add:

<!DOCTYPE html>
<html>
  <body>
    <script src='./bower_components/steal/steal.js'
            data-config='stealconfig.js'
            data-main='main'></script>
  </body>
</html>

To build this app, read StealTools docs.

Adding jQuery

  1. Install jQuery:

    With Bower

    bower install jquery -S

  2. Configure jQuery's path and export:

    Add a config for System.paths to stealconfig.js to tell steal where to find jQuery. Add a config for System.meta to tell SystemJS that jQuery exports the "jQuery" variable.

    System.paths.jquery = "bower_components/jquery/dist/jquery.js";
    System.meta.jquery = { exports: "jQuery" };
    
  3. Load jQuery.

Import "jquery" with ES6 module syntax in main.js:

import $ from "jquery";
$(document.body).append("<h1>Hello World!</h1>");

Developing

After cloning ...

  1. Install npm modules

    npm install

  2. Install bower modules

    bower install

  3. Setup grunt watch

    grunt watch

This will automatically build when anything in src change.

To test, open:

  test/test.html
  

And make sure everything passes.

FAQs

Package last updated on 30 Jun 2014

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