create-sails-generator 0.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README +41 -0
  3. package/package.json +19 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 The Sailscasts Company
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README ADDED
@@ -0,0 +1,41 @@
1
+ # create-sails-generator: A Sails Generator for The Boring JavaScript Stack
2
+
3
+ Welcome to the Create-Sails-Generator! This generator is specifically designed for The Boring JavaScript Stack, providing a plethora of CLI commands for code generation and more to expedite your development process with Sails.js.
4
+
5
+ ## Features
6
+
7
+ - **Code Generation**: Quickly scaffold boilerplate code for pages, actions, and more.
8
+ - **Enhanced CLI Commands**: Extensive CLI commands tailored for Sails.js development.
9
+ - **Saves Time and Effort**: Automate repetitive tasks, saving you valuable development time.
10
+
11
+ ## Installation
12
+
13
+ To use Create-Sails-Generator, you'll first need to have Node.js and npm installed on your machine. Then, follow these simple steps:
14
+
15
+ 1. Install Create-Sails-Generator globally via npm:
16
+
17
+ ```sh
18
+ npm i create-sails-generator --save-dev
19
+ ```
20
+
21
+ 2. Once installed, you can access the generator commands using the `sails generate` command.
22
+
23
+ ## Usage
24
+
25
+ ### Generating Files
26
+
27
+ You can generate various files using the generator with simple commands. For instance, to create a new page, use:
28
+
29
+ ```sh
30
+ sails generate page dashboard
31
+ ```
32
+
33
+ [Check out the docs](https://docs.sailscasts.com/boring-stack/generator) for more information on usage.
34
+
35
+ ## License
36
+
37
+ `create-sails-generator` is licensed under the [MIT License](LICENSE.md).
38
+
39
+ ## About
40
+
41
+ Create-Sails-Generator is maintained by The Sailscasts Company. It is part of [The Boring JavaScript Stack](https://docs.sailscasts.com/boring-stack) - The reliable full-stack JavaScript stack.
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "create-sails-generator",
3
+ "version": "0.0.0",
4
+ "description": "Sails generator for The Boring JavaScript Stack.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": ["The Boring JavaScript Stack", "sails", "senerator"],
10
+ "author": "Kelvin Omereshone<kelvin@sailscasts.com>",
11
+ "license": "MIT",
12
+ "peerDependencies": {
13
+ "sails": ">=1"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/sailscastshq/boring-stack/issues"
17
+ },
18
+ "homepage": "https://github.com/sailscastshq/boring-stack/create-sails-generator#readme"
19
+ }