{"id":13781194,"url":"https://github.com/thinkjs/think-view-handlebars","last_synced_at":"2025-07-13T15:34:27.823Z","repository":{"id":65478883,"uuid":"84552581","full_name":"thinkjs/think-view-handlebars","owner":"thinkjs","description":"Use handlebars to render view files for ThinkJS 3.x","archived":false,"fork":false,"pushed_at":"2021-07-02T00:09:14.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-02-15T20:52:41.913Z","etag":null,"topics":["handlebars","think-adapter","thinkjs","thinkjs3","view"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thinkjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-10T11:20:16.000Z","updated_at":"2021-07-02T00:09:09.000Z","dependencies_parsed_at":"2023-01-25T08:05:19.406Z","dependency_job_id":null,"html_url":"https://github.com/thinkjs/think-view-handlebars","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkjs%2Fthink-view-handlebars","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkjs%2Fthink-view-handlebars/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkjs%2Fthink-view-handlebars/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkjs%2Fthink-view-handlebars/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thinkjs","download_url":"https://codeload.github.com/thinkjs/think-view-handlebars/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248281415,"owners_count":21077423,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["handlebars","think-adapter","thinkjs","thinkjs3","view"],"created_at":"2024-08-03T18:01:23.799Z","updated_at":"2025-04-10T19:37:20.035Z","avatar_url":"https://github.com/thinkjs.png","language":"JavaScript","readme":"# think-view-handlebars\n[![Build Status](https://travis-ci.org/thinkjs/think-view-handlebars.svg?branch=master)](https://travis-ci.org/thinkjs/think-view-handlebars)\n[![Coverage Status](https://coveralls.io/repos/github/thinkjs/think-view-handlebars/badge.svg?branch=master)](https://coveralls.io/github/thinkjs/think-view-handlebars?branch=master)\n[![npm](https://img.shields.io/npm/v/think-view-handlebars.svg?style=flat-square)](https://www.npmjs.com/package/think-view-handlebars)\n\n## Install\n\n```\nnpm install think-view-handlebars\n```\n\n\n## Usage\n\nedit config file `src/config/adapter.js`, add options:\n\n```js\nconst handlebars = require('think-view-handlebars');\nexports.view = {\n  type: 'handlebars',\n  common: {\n    viewPath: path.join(think.ROOT_PATH, 'view'),\n    extname: '.html',\n    sep: '_' //seperator between controller and action\n  },\n  handlebars: {\n    handle: handlebars,\n    beforeRender: (handlebars, handleOptions) =\u003e {\n      // todo\n    }\n  }\n}\n```\n\n### default options\n\n```js\nconst defaultOptions = {\n  compat: true,\n  strict: false,\n  preventIndent: true,\n  ignoreStandalone: true,\n  cache: false\n};\n```\n\nchange options:\n\n```js\nexports.view = {\n  type: 'handlebars',\n  handlebars: {\n    handle: handlebars,\n    options: {\n      strict: true\n    },\n    beforeRender: (handlebars, handleOptions) =\u003e {\n      // todo\n    }\n  }\n}\n```\nyou can find all handlebars's support options at http://handlebarsjs.com/reference.html\n\n### beforeRender\n\n```js\nexports.view = {\n  type: 'handlebars',\n  handlebars: {\n    handle: handlebars,\n    beforeRender: (handlebars, handleOptions) =\u003e {\n      handlebars.registerHelper(\"studyStatus\", function(passingYear) {\n         if(passingYear \u003c 2017) {\n            return \"passed\";\n         } else {\n            return \"not passed\";\n         }\n      })\n    }\n  }\n}\n```\nyou can find all APIs at http://handlebarsjs.com/reference.html\n","funding_links":[],"categories":["Adapters"],"sub_categories":["view"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinkjs%2Fthink-view-handlebars","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthinkjs%2Fthink-view-handlebars","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinkjs%2Fthink-view-handlebars/lists"}