Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
gluestick
Advanced tools
GlueStick is a command line interface for quickly developing universal web applications using React. Currently it is still very experimental and is likely to change frequently.
sudo npm install gluestick -g
GlueStick comes with several generators to help you get started. To create a new GlueStick project, run the following command:
gluestick new newapp
This will create the boilerplate code needed for a GlueStick application as well as install all of the initial npm dependencies.
To help speed up development, GlueStick includes generators for common types of files.
The container generator will create a basic React component in the containers folder that is
already hooked up to redux using the @connect
middlware.
Example:
gluestick generate container MyContainer
The component generator will create a basic React component and a starting test file for that component.
Example:
gluestick generate component MyComponent
The reducer generator will create a new base redux reducer for you and
automatically export it from the reducers/index.js
file.
Example:
gluestick generate reducer todos
GlueStick sets up a testing environment using Karma, Mocha, Chai and Sinon.
React's TestUtils are also available globally in your test files. You simply
need to create files in the test
folder with the extension .test.js and they
will be executed through the test runner.
The preferred way to style components in the GlueStick environment is to use Radium.
To prepare a component for using Radium, simply use the @Radium decorator above your component class. When styling with Radium, your style updates will be hot loaded in development mode so you do not need to refresh the browser to see your changes. Please read the Radium docs for more information on how to use Radium.
Example:
@Radium
export default class MyComponent extends Component {
…
If you want to include a base stylesheet (like bootstrap css), you can import you stylesheet at the top of any file and it will be included when the page loads. We do not currently support hot loading for these styles but they should show up on a page refresh. You can use plain css or sass.
Example: Edit /Index.js
import React, { Component } from "react";
import "assets/css/my-custom-css.css";
…
The code above will automatically extract the css from the referenced file and include it in a base css file that is included on new page loads. References to images and font files will automatically be handled as well.
If you would like to see better css support, please submit a pull request :)
GlueStick's development environment utilizing hotloading so your changes will show up in the browser as you go. This is sort of experimental but it works great most of the time. However, sometimes you will still need to refresh the browser for certain changes.
This is not finished yet but we have some cool things in the works. Stay tuned for more.
FAQs
GlueStick is a command line interface for quickly developing universal web applications using React
The npm package gluestick receives a total of 293 weekly downloads. As such, gluestick popularity was classified as not popular.
We found that gluestick demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.