# tntjs **Repository Path**: C-BAND/tntjs ## Basic Information - **Project Name**: tntjs - **Description**: 这是一个全新的前端框架,轻量级,适合各种快速开发 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 13 - **Created**: 2022-08-06 - **Last Updated**: 2022-08-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README       [](https://www.oscs1024.com/project/Bug-Duck/tntjs?ref=badge_small) [](https://bugduck.cn) [](https://tntjs.bugduck.cn) [](https://space.bilibili.com/1959824394?spm_id_from=333.337.0.0) # TNT.js The JavaScript framework for modern web. ## Roadmap Please refer to [TNT.js Roadmap](https://github.com/Bug-Duck/tntjs/blob/master/roadmap.md). ## Demo ### Installation Simply use package managers to install TNT.js: ```bash $ npm i tntjs $ # or $ yarn add tntjs ``` Then add two files `App.js` and `index.html`: ```js import TNTApp from "tnt.min.js"; const app = new TNTApp() .useData({ x: 233333, list: [ "Alice", "Bob", "Candy" ] }) .mount(document.getElementById("root")) ``` ```html