![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
code-slinger
Advanced tools
Get your React project up and running in 10 seconds with Webpack hot reloading. Boilerplate code is based on Dan Abramov's React Transform Boilerplate.
#code-slinger
Get your React project up and running in 10 seconds with Webpack hot reloading. Boilerplate code is based on Dan Abramov's React Transform Boilerplate.
v1.1.0
10 second method:
npm install -g code-slinger
code-slinger bootstrap
code-slinger react-server
Visit localhost:8000.
You get this file structure:
├── .babelrc
├── .eslintrc
├── .gitignore
├── dist
├── index.html
├── node_modules
├── package.json
└── src
├── App.js
├── colors.js
└── index.js
Thats it!
Need a production build?
# Bundle is dropped in dist/
code-slinger build
# Install code-slinger and save it
npm install --save code-slinger
# Bootstrap the files
./node_modules/.bin/code-slinger bootstrap
Add this to package.json
// ...
"scripts": {
"start": "code-slinger react-server",
"build": "code-slinger build"
},
// ...
Run this:
npm start
Visit localhost:8000.
Want to run a production bundle build?
# Bundle is dropped in dist/
npm run build
Want your own config.webpack.js file to be used?
# Optional: generate a config.webpack.js
./node_modules/.bin/code-slinger gen-webpack
# Either way make sure you have a config named
# config.webpack.js in Project Root
Note: For any arbitrary Webpack config to work with code-slinger: Please replace __dirname
with process.cwd()
in the config file
Usage: code-slinger <command> [options]
Commands:
bootstrap Generate files for running a React project
react-server Run the hot reloading development server for your project on
localhost:8000
build Bundle and export your React app to dist/bundle.js
gen-webpack Generates a custom webpack file to be modified for custom
Webpack builds.
Options:
-h, --help Show help [boolean]
MIT License. Lead Maintainer: Michael A Tomcal @matomcal 2016
Primary libraries used:
...see package.json for more supporting libraries
We welcome contributions, pull requests, ideas, bugs and documentation contributions.
If you wish to contribute, please make sure you are familiar with RxJS. Here is a great tutorial. We are also using RxJS 5 beta.
FAQs
Get your React project up and running in 10 seconds with Webpack hot reloading. Boilerplate code is based on Dan Abramov's React Transform Boilerplate.
The npm package code-slinger receives a total of 0 weekly downloads. As such, code-slinger popularity was classified as not popular.
We found that code-slinger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.