# semantic-create-module

> Helper to create a module and set up semantic-release

Latest version **1.0.0** (published 2015-06-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install semantic-create-module
pnpm add semantic-create-module
yarn add semantic-create-module
bun add semantic-create-module
```

Provides the command `semantic-create-module`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-06-18 |
| First published | 2015-06-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Lewis Cowper |
| Maintainers | lewiscowper |
| Keywords | module, init, semantic-release |

## Links

- npm: https://www.npmjs.com/package/semantic-create-module
- Repository: https://github.com/lewiscowper/semantic-create-module
- Issues: https://github.com/lewiscowper/semantic-create-module/issues
- npm.io page: https://npm.io/package/semantic-create-module

## Dependencies (5)

- [ghauth](https://npm.io/package/ghauth.md) ^0.3.1
- [js-yaml](https://npm.io/package/js-yaml.md) ^3.3.1
- [request](https://npm.io/package/request.md) ^2.49.0
- [run-series](https://npm.io/package/run-series.md) ^1.0.2
- [run-parallel](https://npm.io/package/run-parallel.md) ^1.0.0

## Recent versions

- 1.0.0 (latest) — 2015-06-18

## README

# semantic-create-module
[![NPM](https://nodei.co/npm/semantic-create-module.png)](https://nodei.co/npm/semantic-create-module/)

Helper tool for the usual steps to create a module:

## Usage
```
semantic-create-module <package>
```

Does the following work-flow:
```sh
mkdir <package>
cd <package>
# create <githubrepo> for <package>
git init
git remote add origin <githubrepo>
echo <readme> > readme.md
echo node_modules > .gitignore
npm init
npm install --save-dev semantic-release
./node_modules/.bin/semantic-release setup
add .travis.yml
logs next steps for <package>
git add --all
git commit -m "initial commit"
git push origin master
# set github repo description to package.json description
```

# readme.md
```md
# <package>
[![NPM](https://nodei.co/npm/<package>.png)](https://nodei.co/npm/<package>/)

```

# .travis.yml
```yml
language: node_js
node_js:
- iojs-v1
sudo: false
cache:
  directories:
  - node_modules
notifications:
  email: false
before_deploy:
- npm config set spin false --global
env:
  global: GH_TOKEN=<github-access-token-with-access-to-your-repo>
deploy:
  provider: npm
  email: <your-npm-mail@example.com>
  skip_cleanup: true
  api_key: <npm-api-key>
  on:
    branch: master
    repo: <user>/<repo>
```

---
_Source: https://npm.io/package/semantic-create-module · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
