generated from openpeeps/pistachio
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: George Lemon <[email protected]>
- Loading branch information
1 parent
8c54d8d
commit e5e34fd
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<p align="center"> | ||
<img src="https://raw.githubusercontent.com/openpeeps/tim/main/.github/timengine.png" alt="Tim - Template Engine" width="200px" height="200px"><br> | ||
⚡️ A high-performance template engine & markup language<br> | ||
<strong>Fast</strong> • <strong>Compiled</strong> • Written in Nim 👑 | ||
</p> | ||
|
||
<p align="center"> | ||
<code>npm install @openpeeps/tim</code> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://openpeeps.github.io/tim/">API reference</a> | <a href="https://github.com/openpeeps/tim/releases">Download</a><br><br> | ||
<img src="https://github.com/openpeeps/tim/workflows/test/badge.svg" alt="Github Actions"> <img src="https://github.com/openpeeps/tim/workflows/docs/badge.svg" alt="Github Actions"> | ||
</p> | ||
|
||
## Key features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "@openpeeps/tim", | ||
"version": "0.1.1", | ||
"description": "This is Tim ⚡️ A high-performance template engine & markup language written in Nim", | ||
"main": "src/tim.js", | ||
"keywords": [ | ||
"template-engine", | ||
"markup-language", | ||
"template", | ||
"engine", | ||
"napi", | ||
"c++", | ||
"tim-language", | ||
"bindings", | ||
"frontend", | ||
"nim-language", | ||
"nim" | ||
], | ||
"author": "OpenPeeps", | ||
"license": "LGPL-3.0", | ||
"homepage": "https://openpeeps.dev", | ||
"repository": { | ||
"directory": "github", | ||
"url": "https://github.com/openpeeps/tim" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/openpeeps/tim/issues" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = (() => { | ||
try { | ||
return require('./bin/tim-' + process.platform + '.node'); | ||
} catch (e) { | ||
// | ||
} | ||
})(); |