Socket
Socket
Sign inDemoInstall

ajt

Package Overview
Dependencies
45
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ajt

minimal ajax json template lib


Version published
Weekly downloads
8
increased by700%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

AJT (Ajax JSON Template)

How simple can it be to do an Ajax-Request, get JSON and put this into a template? Simple and lightweight: 3 KB!

ajt('http://yourapi.com/getjson', 'theTemplate', function (html) {
  document.getElementById('placeholder').innerHTML = html;
});

and your template is a vanillaJS compiled jade template :) - does that sound sweet? It does!

h2= value1
code= value2

That it, simple and intuitiv!

Documentation

ajt is looking for three parameters, the request URL, the templateID and the callback. Everything else is done by ajt.js.

Bundling

You can eitherway bundle it by using the node module, or the command line:

var ajt = require('ajt');
var js = ajt(__dirname + '/jadeTemplates', './optionalOutputfilename.js');
// ...
$ ajt -t jadeTemplates -o myoutput.js
or
$ ajt -t jadeTemplates

You even can do:

$ ajt -t jadeTemplates -t moreTemplates -o myoutput.js

Contributors

  • milafrerichs - he kind of had the idea ;)

FAQs

Last updated on 18 Jan 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc