mazharul 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +42 -0
- package/package.json +15 -0
package/index.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
=======================================================
|
|
5
|
+
๐ Hello, Iโm Md Mazharul Islam
|
|
6
|
+
=======================================================
|
|
7
|
+
|
|
8
|
+
Software Engineer | Full-Stack Developer
|
|
9
|
+
|
|
10
|
+
๐ผ Profession:
|
|
11
|
+
Software Engineer at Next Level Media
|
|
12
|
+
|
|
13
|
+
๐ Bio:
|
|
14
|
+
Full-stack developer focused on scalable backend systems,
|
|
15
|
+
clean APIs, and modern web applications.
|
|
16
|
+
|
|
17
|
+
๐ Skills:
|
|
18
|
+
โข JavaScript & TypeScript
|
|
19
|
+
โข Node.js, Express.js, NestJS
|
|
20
|
+
โข React.js & Next.js
|
|
21
|
+
โข MongoDB, PostgreSQL, Prisma
|
|
22
|
+
โข Redux & RTK Query
|
|
23
|
+
โข REST & System Design
|
|
24
|
+
|
|
25
|
+
๐ก Interests:
|
|
26
|
+
โข SaaS Product Development
|
|
27
|
+
โข Backend Architecture
|
|
28
|
+
โข Microservices
|
|
29
|
+
โข Learning new technologies
|
|
30
|
+
|
|
31
|
+
๐ Social Links:
|
|
32
|
+
- GitHub: https://github.com/mazharulDev
|
|
33
|
+
- LinkedIn: https://www.linkedin.com/in/mazharuldev/
|
|
34
|
+
- website: https://www.mazharul.me/
|
|
35
|
+
- facebook: https://www.facebook.com/MazharulDev/
|
|
36
|
+
|
|
37
|
+
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
|
|
38
|
+
โ โ
|
|
39
|
+
โ โLearning every day, building for the future.โ โ
|
|
40
|
+
โ โ
|
|
41
|
+
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
|
|
42
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mazharul",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"mazharul": "./index.js"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [],
|
|
13
|
+
"author": "",
|
|
14
|
+
"license": "ISC"
|
|
15
|
+
}
|