create-lacspace-app 2.2.0 → 2.2.2
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/README.md +32 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -155,9 +155,37 @@ console.log(`Scaffolded ${written.length} files → ${dir}`);
|
|
|
155
155
|
|
|
156
156
|
`options`: `{ name?, template?, theme? }` — the same choices as the CLI flags above.
|
|
157
157
|
|
|
158
|
+
## ❓ FAQ
|
|
159
|
+
|
|
160
|
+
More questions — about the packages, tools and this CLI — are answered at **[developer.lacspace.com/faq](https://developer.lacspace.com/faq)**.
|
|
161
|
+
|
|
162
|
+
**What is create-lacspace-app?**
|
|
163
|
+
A scaffolding CLI that writes a complete, production-ready **Next.js 15 + Tailwind** app in seconds — pre-wired with Lacspace SEO, security headers, robots.txt, a sitemap, a working contact form, a ⌘K command palette, dynamic Open Graph images and a CI workflow.
|
|
164
|
+
|
|
165
|
+
**How do I scaffold a new app?**
|
|
166
|
+
`npx create-lacspace-app`, or pass a name and template up front: `npx create-lacspace-app my-site --template saas`. It installs dependencies and hands you a running app.
|
|
167
|
+
|
|
168
|
+
**Which templates are included?**
|
|
169
|
+
Personal, business, ecommerce, SaaS, blog (a real Markdown blog), docs (a real Markdown docs site) and marketplace — each a complete, deployable Next.js app. Preview them all at [templates.lacspace.com](https://templates.lacspace.com).
|
|
170
|
+
|
|
171
|
+
**What comes pre-wired in a generated app?**
|
|
172
|
+
SEO metadata + JSON-LD via `@lacspace/seo`, a dynamic OG image endpoint via `@lacspace/og`, security headers, `robots.txt` and a sitemap, a typed contact form with a honeypot, a ⌘K command palette, and a GitHub Actions workflow that gates on an SEO crawl grade.
|
|
173
|
+
|
|
174
|
+
**Do I need to know the Lacspace packages to use it?**
|
|
175
|
+
No — the generated app works out of the box and you can build normally. The packages are wired in where they help; lean on them as much or as little as you like.
|
|
176
|
+
|
|
177
|
+
**Which Node version do I need?**
|
|
178
|
+
Node.js **20 or newer**.
|
|
179
|
+
|
|
180
|
+
**Is it really free — for commercial projects too?**
|
|
181
|
+
Yes. It's free under the permissive **Lacspace Free Licence v1.0**, commercial use included, and the apps you generate are entirely yours.
|
|
182
|
+
|
|
183
|
+
**Where do I report a bug or request a feature?**
|
|
184
|
+
Open an issue at [github.com/lacspace/npm-packages/issues](https://github.com/lacspace/npm-packages/issues).
|
|
185
|
+
|
|
158
186
|
## Licensing
|
|
159
187
|
|
|
160
|
-
Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; the apps you generate are entirely yours.
|
|
188
|
+
Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; the apps you generate are entirely yours.
|
|
161
189
|
|
|
162
190
|
<!-- LACSPACE-DEV-PLATFORM -->
|
|
163
191
|
|
|
@@ -165,13 +193,13 @@ Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-
|
|
|
165
193
|
|
|
166
194
|
## The Lacspace Developer Platform
|
|
167
195
|
|
|
168
|
-
`create-lacspace-app` is part of **
|
|
196
|
+
`create-lacspace-app` is part of **80+ zero-dependency, isomorphic TypeScript packages** — one standard library for the modern web. Explore the ecosystem:
|
|
169
197
|
|
|
170
|
-
- 🗂️ **All
|
|
198
|
+
- 🗂️ **All 80+ packages** — https://developer.lacspace.com/packages
|
|
171
199
|
- 🧭 **Developer handbook** — guides & runnable recipes — https://developer.lacspace.com/handbook
|
|
172
200
|
- 🧪 **Live playground** — run any package in your browser — https://developer.lacspace.com/playground
|
|
173
201
|
- 🖥️ **Finished app templates** — https://templates.lacspace.com
|
|
174
202
|
- 🚀 **Scaffold a full app** — `npm create lacspace-app@latest`
|
|
175
203
|
|
|
176
|
-
Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
|
|
204
|
+
Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
|
|
177
205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-lacspace-app",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Scaffold a beautiful, production-ready Next.js app from a Lacspace template — portfolio, business, e-commerce, SaaS, blog, docs, dashboard, restaurant or marketplace — pre-wired with SEO, security headers, sitemap and robots. Use it as a CLI (like create-next-app, but you start gorgeous) or import it as a library to generate projects programmatically.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|