Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jpegzilla-init

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jpegzilla-init

a simple cli for setting up web projects the way I like to do it

  • 1.2.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

jpegzilla-init

this is a command line utility that I made to help me easily initialize new web projects because I do it pretty much the same way every time. might be useful to you as well!


usage:

$ npm i -g jpegzilla-init
$ jpegzilla-init

and you'll be prompted to go through the creation process.

there are other arguments, as well:

-yes or -Y : initialize project with all default options (no prompts will show)
-reset or -R : empties current directory. prompts for confirmation.
-react : creates react project with default options (no prompts will show)
-w : creates web component project with default options (no prompts)

what files this will create:

vanilla:

generates this (with some variation depending on your choices):

root
├── index.html
├── js
│   ├── modules
│   └── main.mjs
└── css
    ├── components
    │   ├── _defaults.scss
    │   └── _vars.scss
    └── main.scss
react:

generates this (with respect to options):

root
├── public
│   └── index.html
├── src
│   ├── components
│   │   ├── styles
│   │   │   ├── components
│   │   │   │   ├── _defaults.sass
│   │   │   │   └── _vars.sass
│   │   │   └── main.sass
│   │   └── App.js
│   └── index.js
├── test
│   ├── helpers
│   │   ├── dom.js
│   │   └── helpers.js
│   └── App.test.js
├── .babelrc
├── .gitignore
└── package.json
web component:

generates this (with some variation depending on your choices):

root
├── css
│   ├── components
│   ├── utils
│   │   ├── _defaults.sass
│   │   └── _var.sass
│   └── main.sass
├── js
│   ├── components
│   │   ├── component.mjs
│   │   └── index.mjs
│   ├── utils
│   │   ├── index.mjs
│   │   └── state.mjs
│   └── main.mjs
├── index.html
├── .gitignore
└── .prettierrc

individual file contents:

the file contents are represented in the /templates folder. note that these files are simply kept as a reference, and are not dependencies. the /templates folder is not included in the npm package.


future features

  • add service worker prompts

  • ogp / twitter / ios / seo meta tags

  • icon meta / manifest / etc. tags for pwas

  • add support for other frameworks:

    • add handlebars
    • add express
    • add rails
    • add vue
    • add ruby

Keywords

FAQs

Package last updated on 12 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc