Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jguddas/jumpstart
Config and boilerplate free dev/build tool.
https://github.com/jguddas/jumpstart
babel eslint jest less lightscript postcss sass typescript webpack
Last synced: 25 days ago
JSON representation
Config and boilerplate free dev/build tool.
- Host: GitHub
- URL: https://github.com/jguddas/jumpstart
- Owner: jguddas
- License: mit
- Created: 2018-03-31T13:26:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T16:59:52.000Z (about 4 years ago)
- Last Synced: 2024-02-02T18:03:34.425Z (9 months ago)
- Topics: babel, eslint, jest, less, lightscript, postcss, sass, typescript, webpack
- Language: JavaScript
- Size: 110 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
jumpstart
=======Config and boilerplate free dev/build tool.
Preview
----------![](https://user-images.githubusercontent.com/25524993/96020434-4e5eb680-0e4e-11eb-93a1-1d7b8fdaaf39.gif)
Installation
------------#### Global installation
```
npm i -g jumpstart-cli
```#### Local installation
```
npm i -D jumpstart-cli
```Usage
-----#### Globally installed
```
jumpstart
```#### Locally installed
```
./node_modules/.bin/jumpstart
```#### Not installed
```
npx jumpstart-cli
```Examples
--------#### Webpack
```sh
# javascript
echo "alert('Hello World')" > src/index.js# typescript
echo "
message:string = "Hello World"
alert('Hello World')
" > src/index.ts# lightscript
echo "alert! 'Hello World'" > src/index.lscjumpstart start
jumpstart bulid
```#### Jest
```sh
# javascript
echo "it('example', () => expect(4).toBe(3))" > example.test.js# typescript
echo "
it('example', () => {
const example:number = 3
expect(4).toBe(example)
})
" > example.test.ts# lightscript
echo "it! 'example', -> expect(4).toBe(3)" > example.test.lscjumpstart test
```#### ESLint
```sh
# javascript
echo "console.log('Hello World')" > src/example.js# typescript
echo "
message:string = "Hello World"
alert('Hello World')
" > src/example.ts# lightscript
echo "console.log! 'Hello World'" > src/example.lscjumpstart lint
```#### Babel
```sh
# javascript
echo "console.log({ ...foo })" > example.js
jumpstart compile example.js# typescript
echo "
message:string = "Hello World"
alert('Hello World')
" > src/index.ts
jumpstart compile example.ts# lightscript
echo "console.log! { ...foo }" > example.lsc
jumpstart compile example.lsc
```#### PostCSS
```sh
# css
echo ".foo { bar: baz }" > example.css
jumpstart css example.css# sass
echo ".foo { .bar { baz: qux } }" > example.scss
jumpstart css example.scss# less
echo ".foo { .bar { baz: qux } }" > example.less
jumpstart css example.less
```
#### MDX
```sh
npm i jumpstart-cli babel-loader @mdx-js/loader
```
```js
import React from 'react'
import { render } from 'react-dom'import Page from '!babel-loader?configFile=jumpstart-cli/babel!@mdx-js/loader!./page.mdx'
render(, document.getElementById('root'))
```