2.2.8 • Published 2 years ago

fs-create-project v2.2.8

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

FSCreateProject

CreateProject (fscp) is an app that create HTML/JS/CSS projects.

"create" Method

It has 4 types:

  • Starter
  • Basic
  • Dev
  • Express
const fscp = require("fs-create-project");

fscp.create({ type: "dev" }); // or starter, basic, express

"Project" Class

You can add any file you want.

const fscp = require("fs-create-project");

const project = new fscp.Project("fscproject"); // all methods are implemented via "this.name"

project.createProject("index.js", "style/", "style/style.css", "index.html"); // If you want to create a folder instead file, just end the string with "/".
project.showFeatures(); // Logs project features to console
project.copyProject(); // The destination is "{this.name}-copy"
project.deleteProject();
2.2.8

2 years ago

2.2.7

2 years ago

2.2.6

2 years ago

2.2.5

2 years ago

2.2.4

2 years ago

2.2.3

2 years ago

2.2.2

2 years ago

2.2.1

2 years ago

2.2.0

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.1.1

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago