# typescript-jquery-template **Repository Path**: mirrors_shlomif/typescript-jquery-template ## Basic Information - **Project Name**: typescript-jquery-template - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # TypeScript jQuery Template use jQuery for TypeScript. ## Usage use [Node.js](http://nodejs.org/) ### Setup install [grunt](http://gruntjs.com/) & [bower](http://bower.io/) & [testem](https://github.com/airportyh/testem) ```sh % sudo npm install -g grunt-cli % sudo npm install -g bower % sudo npm install -g testem ``` npm package install ```sh % npm install ``` install jQuery ```sh % bower install jquery ``` or ```sh % bower install https://github.com/jquery/jquery.git ``` ### Directory Tree - `src/` ... `*.ts`, `*.html` - `build/` ... compiled file to (`*.js`, `*.html`) - `tests/` ... test file ### Command build ```sh % grunt ``` watch ```sh % grunt watch ``` local web server DocumentRoot is `build/` ``` % grunt server ``` test ```sh % testem ```