Allowing password login will undermine the safety of server, so instead we can set up SSH login for each user.
Continue readingMonthly Archives: November 2018
Webpack: New Resolve Root Path
- src
|- components
||- CatComponent.js
||- DogComponent.js
- node_modules
/* src/components/DogComponent.js */
import CatComponent from 'components';
For importing from another directive to work like imports from node_modules
like above, configure webpack.
jsPlumb: Reconnection after Removing Element
If you encounter a bug where all the re-established connections of a deleted div going to the top left of the screen: at the moment there’s no better solution than to delete all connections and repaint everything.
I’m using jsPlumb community version with React.
Continue reading