Gathering detailed insights and metrics for wertik-js
Gathering detailed insights and metrics for wertik-js
Gathering detailed insights and metrics for wertik-js
Gathering detailed insights and metrics for wertik-js
npm install wertik-js
Typescript
Module System
Node Version
NPM Version
TypeScript (95.68%)
JavaScript (4.32%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
86 Stars
994 Commits
21 Forks
9 Watchers
5 Branches
11 Contributors
Updated on Jul 01, 2025
Latest Version
3.3.3
Package Id
wertik-js@3.3.3
Unpacked Size
839.18 kB
Size
175.71 kB
File Count
460
NPM Version
8.1.0
Node Version
16.13.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
30
Wertik is a tiny Node JS framework that helps you set up servers with support for
You can install wertik-js by using yarn or npm:
Yarn
yarn add wertik-js
Npm
npm install wertik-js
To start wertik-js server you need to import wertik and start it:
1import wertik from "wertik-js/lib/" 2 3weritk({ 4 port: 1200, 5})
In your console you will see something like this:
1Wertik JS app listening at http://localhost:1200
If you visit http://localhost:1200, you will see a response like this:
1Cannot GET /
🚀 You have successfully started wertik server. There is nothing in wertik app right now. Let's make it interactive by adding:
You can access Wertik instance inside GraphQL and Express handler through:
1app.get("/somepath", (req, res) => { 2 console.log(req.wertik) // Wertik App 3 res.send("Some Info") 4})
For more please see This line.
1function Resolver(_, args, context, info) => { 2 console.log(context.wertik); // Wertik App 3 return "Some Info" 4}
For more please see: This line
With keyword Wertik you can access everything that lies inside wertik from database, modules, sockets, mailer, cron jobs to everything in Wertik app.
Wertik JS lightens up your app with different features, Wertik can be helpful for small projects such as task management or a blog application. With modules with Wertik JS, you can easily create modules with crud operations. Furthermore, Wertik JS can lighten up your app with useful features such as Redis, Sockets, Database such as Mysql, Queue Management, Storage, Cron Jobs, and other useful features.
Wertik JS v3 is setup in a clean way and easy way. Here is the main file which initializes Wertik JS: Show File.
You can check the code and if you find something that needs to be changed, you can create a new Issue here.
If you came across a grammatical mistake please create a new issue with more details in the description: here.
Pull requests are welcome. If you have discovered a bug or have a feature suggestion, feel free to create an issue on GitHub.
If you'd like to make some changes yourself, see the following:
dev-next
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 1/17 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More