{"id":24780806,"url":"https://github.com/christiaanwesterbeek/node-extjs-custom","last_synced_at":"2026-04-27T12:31:35.105Z","repository":{"id":23805437,"uuid":"27181621","full_name":"christiaanwesterbeek/node-extjs-custom","owner":"christiaanwesterbeek","description":"Customized version of Ext JS 4.2.1 with a subset of the functionalities ported for usage in NodeJS","archived":false,"fork":false,"pushed_at":"2015-11-23T09:08:44.000Z","size":64,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T14:46:46.344Z","etag":null,"topics":["extjs","nodejs","template","template-engine"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/christiaanwesterbeek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-26T14:54:32.000Z","updated_at":"2018-09-20T23:20:33.000Z","dependencies_parsed_at":"2022-08-22T04:51:01.649Z","dependency_job_id":null,"html_url":"https://github.com/christiaanwesterbeek/node-extjs-custom","commit_stats":null,"previous_names":["devotis/node-extjs-custom"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/christiaanwesterbeek/node-extjs-custom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christiaanwesterbeek%2Fnode-extjs-custom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christiaanwesterbeek%2Fnode-extjs-custom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christiaanwesterbeek%2Fnode-extjs-custom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christiaanwesterbeek%2Fnode-extjs-custom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/christiaanwesterbeek","download_url":"https://codeload.github.com/christiaanwesterbeek/node-extjs-custom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christiaanwesterbeek%2Fnode-extjs-custom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32337268,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extjs","nodejs","template","template-engine"],"created_at":"2025-01-29T10:50:53.385Z","updated_at":"2026-04-27T12:31:35.083Z","avatar_url":"https://github.com/christiaanwesterbeek.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/devotis/node-extjs-custom.svg)](https://travis-ci.org/devotis/node-extjs-custom)\n[![npm version](https://badge.fury.io/js/extjs-custom.svg)](https://www.npmjs.org/package/extjs-custom)\n\nnode-extjs-custom\n=================\n\nCustomized version of Ext JS 4.2.1 containg only the Templating functionality. The files in this module are initially copy pasted from Ext JS 4.2.1.883. And then needed to do some tweaking for usage in Node. All Ext.define (with extends) usage is replaced with a plain vanilla Ext.extend method.\n\nFunctionalities included (indented by hierarchy)\n* Ext\n  * Ext.Template\n    * Ext.XTemplate\n  * Ext.XTemplateParser\n    * Ext.XTemplateCompiler (required by XTemplate)\n\n##Install##\nInstall with [npm](http://github.com/isaacs/npm)\n\n```\nnpm install extjs-custom\n```\n\n##Usage##\n\n```javascript\nvar Ext = require('extjs-custom');\n\nvar data = {\n    name: 'Don Griffin',\n    title: 'Senior Technomage',\n    company: 'Sencha Inc.',\n    drinks: ['Coffee', 'Water', 'More Coffee'],\n    kids: [\n        { name: 'Aubrey',  age: 17 },\n        { name: 'Joshua',  age: 13 },\n        { name: 'Cale',    age: 10 },\n        { name: 'Nikol',   age: 5 },\n        { name: 'Solomon', age: 0 }\n    ]\n};\n\nvar tpl = new Ext.XTemplate('Name: {0}, Age: {1}');\nvar html = tpl.apply(['John', 25]);\nconsole.log(html)\n\nvar tpl = new Ext.XTemplate(\n    '\u003cp\u003eName: {name}\u003c/p\u003e',\n    '\u003cp\u003eTitle: {title}\u003c/p\u003e',\n    '\u003cp\u003eCompany: {company}\u003c/p\u003e',\n    '\u003cp\u003eKids: ',\n    '\u003ctpl for=\"kids\"\u003e',     // interrogate the kids property within the data\n        '\u003cp\u003e{name}\u003c/p\u003e',\n    '\u003c/tpl\u003e\u003c/p\u003e'\n);\nvar html = tpl.apply(data);\nconsole.log(html)\n```\n\n##License##\n\nExtJS is a fully licensed product for use in commercial projects or under GPL for open source projects. It is assumed that if you're using node-extjs-custom that you will conform to the licensing requirements of Sencha (http://www.sencha.com/products/extjs/license/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristiaanwesterbeek%2Fnode-extjs-custom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchristiaanwesterbeek%2Fnode-extjs-custom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristiaanwesterbeek%2Fnode-extjs-custom/lists"}