Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@e3c-summer-worker/navigation
Advanced tools
Making our custom headers is a bit involved. We have to copy a lot of HTML code into the scripts, and it's confusing and difficult to debug if something changes and goes wrong, especially if our only text editor is the one built into Squarespace.
Making our custom headers is a bit involved. We have to copy a lot of HTML code into the scripts, and it's confusing and difficult to debug if something changes and goes wrong, especially if our only text editor is the one built into Squarespace.
Making the navigation in another component where you ethen import it is easier to debug and move around; you copy less code between pages and the development process is better if you're using something like VSCode.
We are using this folder to specifically host the desktop and mobile navigation component,
that goes inside #headerNav
and #sidecarNav
in the Squarespace page, respectively.
The header code in public/index.html
is almost exactly what you'd see copy and
pasted into Squarespace (instead of importing the local .js
file we use
JSDelivr, and we need to add the contents in and styles.css
.
Note that we are using yarn workspaces, so the installations will be mostly consolidated at a top-level node_modules/
folder.
The site.css
is the squarespace compiled css, and the styles.css
are our styles.
yarn
yarn start
Note that the styles will be quite a bit different than production, this is because I only copied a subset of the HTML into our public/
html file. The important thing is that the navigation bar is functional.
Also, when you switch to Desktop to Mobile view, refresh the page to get the functional navigation bars. Not sure why this is the case, maybe I didn't download all the files.
yarn build
In v2, only the import is needed.
<script src="https://cdn.jsdelivr.net/npm/@e3c-summer-worker/navigation@2/build/navigation.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@e3c-summer-worker/navigation@1/build/mobilenav-elm.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@e3c-summer-worker/navigation@1/build/desktopnav-elm.js"></script>
<script>
window.onload = function () {
// desktop navigation
const headerNav = document.getElementById('headerNav');
const app_d = Elm.DesktopNav.init({ node: headerNav });
// mobile navigation
const sidecarNav = document.getElementById('sidecarNav');
const app_m = Elm.MobileNav.init({ node: sidecarNav });
}
</script>
FAQs
Making our custom headers is a bit involved. We have to copy a lot of HTML code into the scripts, and it's confusing and difficult to debug if something changes and goes wrong, especially if our only text editor is the one built into Squarespace.
The npm package @e3c-summer-worker/navigation receives a total of 0 weekly downloads. As such, @e3c-summer-worker/navigation popularity was classified as not popular.
We found that @e3c-summer-worker/navigation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.