almera-vs / Web-Project-Script

A batch script that automatically creates all crucial web files to speed up your work.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web Project Script

A batch script that automatically creates all crucial web files to speed up your work.

Download

v2.0
v1.0

How does it work?

It's really simple. The script creates a folder filled with 3 files and assets subfolder. The files are: index.html, styles.css, main.js. Project folder is generated at the same location as the batch script.

Inside of the index.html file you'll see the following code:

<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
   <link rel="stylesheet" type="text/css" href="styles.css"> 
    <title></title> 
</head> 
<body> 
</body> 
</html> 

You can edit that as you like. The HTML code above is a commonly used snippet.

The purpose

The goal of this script is to speed up your work by reducing your time on creating/saving files and checking if all things are ok. With this script all you have to do is to pick a name for your project and press enter. Everything is automated so it's way faster than doing it manually.

How it looks like:

1.Pick a name for your project. I used "test" in this case. 2. Done. Now press any key to open the project folder you just created. 3. Works as intended.

Precautions:

  • Always name a folder. Skipping this step will possibly mess up your current directory.
  • Don't use space in the project's name for the same reason. If you must separate words then better use hyphen (-) or something similiar.

This repo is using MIT licence

About

A batch script that automatically creates all crucial web files to speed up your work.

License:MIT License


Languages

Language:Batchfile 100.0%