
Security News
Feross on Risky Business Weekly Podcast: npm’s Ongoing Supply Chain Attacks
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
orc-scripts
Advanced tools
This package contains a standard set of dependencies and tooling for web applications. It is based on kcd-scripts
(copyright © 2017 Kent C. Dodds, licensed via MIT License) in both concept and code.
Installing this package is done via npm: npm install orc-scripts
. This will also install the dependency set provided.
Several scripts are provided to users.
The easiest way to use these scripts is to add entries to your package.json under "scripts", invoking the orc-scripts
command. A typical "scripts" section might look like this:
{
"scripts": {
"clean": "orc-scripts clean",
"build": "orc-scripts prep && orc-scripts build",
"start": "orc-scripts prep && orc-scripts start",
"test": "orc-scripts test",
"coverage": "orc-scripts test --coverage"
}
}
The toolbox contains support for eslint
and prettier
, both for use with development tools (such as Atom or VS Code) and in git hooks. To integrate with your development tool of choice, ensure the suitable plugin is installed if applicable, and create a config file or package.json
entry that points to the orc-scripts
preset for that tool (orc-scripts/eslint
, resp. orc-scripts/prettier
).
To set up a git commit hook that runs prettier
on all staged files, add the following section to package.json
:
{
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
This will run the lint-staged
tool whenever you commit files to git. Configure this tool with a section in your package.json
as follows:
{
"lint-staged": {
"linters": {
"*.{js,json,md}": ["prettier --write", "git add"]
},
"ignore": ["package.json", "package-lock.json", "src/translations/*.json"]
}
}
This instructs lint-staged
to run prettier
on staged files, rewriting the file to specifications, and then re-staging it for the commit. This ensures that all code in the app lives up to the strict standards set by prettier
. It is recommended to not let it process package.json
, package-lock.json
and translation files, as these are automatically processed and changed. Prettier can be told to ignore these by adding a .prettierignore
file using the same syntax as .gitignore
.
Testing with Jest and unexpected
is built into the toolbox, allowing test setup to be as simple as adding a file with a .test.js
suffix to your file tree. A number of plugins and custom assertions are provided as well.
An application that employs code splitting (resulting in multiple output bundle files) and is to be deployed to a CDN will need to pass the CDN location to the entry bundle to ensure that further bundles are fetched from the right location. To do this, include a script in the header of the index.html
file which sets window.ASSET_PATH
to the CDN location (a slash-terminated url, i.e. "https://foo.cdn.org/my-bundle/"
). This needs to be executed before the entry bundle.
Copyright © 2018 Orckestra Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Scripts toolbox for Orckestra
The npm package orc-scripts receives a total of 290 weekly downloads. As such, orc-scripts popularity was classified as not popular.
We found that orc-scripts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.