Initial Commit

* Implements Basic Routing and API
* Implements Package.json file select and json parse
* Displays Project Name, Version & Desc from the package.json
* Fetch all package details using npm registry API and map it based on package name
This commit is contained in:
2023-05-13 11:17:27 +05:30
commit fc0064f6a0
19 changed files with 388 additions and 0 deletions

17
islands/UploadButton.tsx Normal file
View File

@@ -0,0 +1,17 @@
import {JSX} from 'preact';
export default function UploadButton(props: JSX.HTMLAttributes<HTMLInputElement>) {
return(
<form action="/analyze" method="post" encType="multipart/form-data">
<input
{...props}
name="packagefile"
type="file"
accept={".json"}
// onChange={getFileData}
/>
<button type="submit">Submit</button>
</form>
);
}