Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ajt

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ajt

minimal ajax json template lib

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 18 Jan 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