formsync 0.0.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +61 -0
  2. package/package.json +19 -10
package/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # FormSync – Serverless & Secure
2
+
3
+ **Fast, secure and serverless form submissions — without any backend.**
4
+
5
+ FormSync lets developers collect and manage form submissions effortlessly. Integrate it into your HTML or React projects with a single action URL — no server, no database and no configuration needed.
6
+
7
+ ---
8
+
9
+ ## Overview
10
+
11
+ FormSync is a **serverless form handling platform** designed for developers who want to:
12
+
13
+ - Accept form submissions instantly
14
+ - Skip backend setup or maintenance
15
+ - Keep their data secure and reliable
16
+ - Integrate seamlessly into existing projects
17
+
18
+ Built for speed, simplicity and modern web apps.
19
+
20
+ ---
21
+
22
+ ## Features
23
+
24
+ - **No Backend Required** — Collect and manage form data without writing a single line of server code.
25
+ - **Secure by Design** — Built with CORS protection and HTTPS endpoints.
26
+ - **Pre-Built Components** — Use our pre-built components to quickly integrate forms into your app.
27
+ - **Easy Integration** — Works out of the box with HTML and React forms.
28
+ - **Instant Deployment** — Paste the action URL and start receiving submissions immediately.
29
+ - **Serverless Architecture** — Fully hosted and powered by Vercel.
30
+
31
+ ---
32
+
33
+ ## Basic form example
34
+
35
+ Add the FormSync endpoint as your form’s `action`:
36
+
37
+ ```html
38
+ <form action="https://formsync.app/api/submit/your-form-id" method="POST">
39
+ <input type="text" name="name" placeholder="Your Name" required />
40
+ <input type="email" name="email" placeholder="Your Email" required />
41
+ <button type="submit">Send</button>
42
+ </form>
43
+ ```
44
+
45
+ > That’s it — your form is live and connected.
46
+
47
+ ## Why FormSync
48
+
49
+ FormSync was built to remove the friction of backend setup when handling forms.
50
+ Whether you’re building a static site, a Next.js app, or a quick prototype — FormSync keeps your workflow lightweight and efficient.
51
+
52
+ ## Policies
53
+
54
+ - [Privacy Policy](https://www.formsync.app/policies/privacy-policy)
55
+ - [Terms of Service](https://formsync.app/policies/terms-of-service)
56
+ - [Trademark Policy](https://formsync.app/policies/trademark-policy)
57
+ - [All Policy Documents](https://formsync.app/policies)
58
+
59
+ ---
60
+
61
+ > **FormSync** — by [SudhuCodes](https://sudhucodes.com) > _Serverless. Secure. Reliable._
package/package.json CHANGED
@@ -1,12 +1,21 @@
1
1
  {
2
- "name": "formsync",
3
- "version": "0.0.1",
4
- "main": "index.js",
5
- "scripts": {
6
- "test": "echo \"Error: no test specified\" && exit 1"
7
- },
8
- "keywords": [],
9
- "author": "",
10
- "license": "ISC",
11
- "description": "FormSync is a powerful backend-free platform that enables developers to collect and manage form submissions effortlessly."
2
+ "name": "formsync",
3
+ "version": "0.1.0",
4
+ "description": "**Fast, secure and serverless form submissions — without any backend.**",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/sudhucodes/formsync.git"
12
+ },
13
+ "keywords": [],
14
+ "author": "",
15
+ "license": "ISC",
16
+ "type": "commonjs",
17
+ "bugs": {
18
+ "url": "https://github.com/sudhucodes/formsync/issues"
19
+ },
20
+ "homepage": "https://github.com/sudhucodes/formsync#readme"
12
21
  }