Skip to content

Commit 01f9ba2

Browse files
authored
Merge pull request #1 from foderking/move-to-nextjs
Rewrote the whole app into nextjs
2 parents 50da617 + e252681 commit 01f9ba2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2777
-38650
lines changed

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
26+
.next
27+
tsconfig.tsbuildinfo

README.md

+13-34
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
</div>
88

9-
10-
11-
129
## Table of Contents
1310

1411
+ [About](#about)
@@ -18,7 +15,7 @@
1815

1916
## About <a name = "about"></a>
2017

21-
A web application for decrypting minified javascript.
18+
An application for deominifying and deobfuscating javascript source files.
2219

2320
## Getting Started <a name = "getting_started"></a>
2421

@@ -30,55 +27,37 @@ These instructions will get you a copy of the project up and running on your loc
3027
Things you'll to install this project..
3128

3229
+ An Operating System with a working shell ( Bash, Powershell, zsh etc.)
33-
+ The latest version of Git
34-
+ npm
35-
36-
30+
+ Git
31+
+ Yarn
3732

3833
### Installing
3934

4035
First, clone this project to your local system. You could download as a zip file or clone it throught the terminal
4136

4237
Copy and paste on the terminal
4338

44-
```sh
39+
```bash
4540
git clone https://github.com/foderking/Deminify.js.git
4641

4742
cd Deminify.js
4843
```
4944

5045
Then install dependencies:
5146

52-
```sh
53-
npm install
54-
```
55-
56-
To run in hot module reloading mode:
57-
58-
```sh
59-
npm start
60-
```
61-
To run in dev mode
62-
```sh
63-
npm run dev
47+
```bash
48+
yarn
6449
```
6550

66-
To create a production build:
51+
Run the development server:
6752

68-
```sh
69-
npm run build
53+
```bash
54+
yarn dev
7055
```
7156

72-
To run tests:
73-
74-
```sh
75-
npm run test
76-
```
77-
78-
End with an example of getting some data out of the system or using it for a little demo.
79-
57+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
8058

8159
## Credits
8260

83-
+ create-react-app
84-
+ [react-ace](https://github.com/securingsincity/react-ace)
61+
+ jsoverson
62+
63+
+ [eval deobfuscator](https://github.com/chris124567/eval-deobfuscator/)

netlify.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[[plugins]]
2+
package = "@netlify/plugin-nextjs"
3+
4+
[build]
5+
command = "yarn next build"
6+
publish = ".next"

next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

next.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
}
5+
6+
module.exports = nextConfig

0 commit comments

Comments
 (0)